IDEMPIERE-455 Discover and fix FindBugs problems / Generate serialVersionUID instead of the default 1L
This commit is contained in:
parent
624d5862e2
commit
cbe8d69e30
|
@ -21,7 +21,12 @@ import org.compiere.util.TimeUtil;
|
|||
*/
|
||||
public class MAssetAcct extends X_A_Asset_Acct
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -3919172418904053712L;
|
||||
|
||||
/**
|
||||
* DO NOT USE DIRECTLY
|
||||
|
|
|
@ -35,8 +35,11 @@ import org.idempiere.fa.util.POCacheLocal;
|
|||
public class MAssetAddition extends X_A_Asset_Addition
|
||||
implements DocAction
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 5977180589101094202L;
|
||||
/** Static Logger */
|
||||
private static CLogger s_log = CLogger.getCLogger(MAssetAddition.class);
|
||||
|
||||
|
|
|
@ -12,8 +12,11 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MAssetGroup extends X_A_Asset_Group
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -173157506404569463L;
|
||||
/** Cache: ID -> MAssetGroup */
|
||||
private static CCache<Integer, MAssetGroup> s_cache = new CCache<Integer, MAssetGroup>(Table_Name, 10, 0);
|
||||
|
||||
|
|
|
@ -16,7 +16,11 @@ import org.idempiere.fa.feature.UseLifeImpl;
|
|||
public class MAssetGroupAcct extends X_A_Asset_Group_Acct
|
||||
implements UseLife
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -3458020679308192943L;
|
||||
|
||||
/**
|
||||
* Get Asset Group Accountings for given group
|
||||
|
|
|
@ -12,7 +12,11 @@ import org.compiere.model.Query;
|
|||
*/
|
||||
public class MAssetProduct extends X_A_Asset_Product
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 2459915999284269350L;
|
||||
|
||||
/** Standard Constructor */
|
||||
public MAssetProduct (Properties ctx, int A_Asset_Product_ID, String trxName)
|
||||
|
|
|
@ -27,8 +27,11 @@ import org.compiere.util.TimeUtil;
|
|||
public class MAssetReval extends X_A_Asset_Reval
|
||||
implements DocAction
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -3937514008250840440L;
|
||||
private boolean m_justPrepared = false;
|
||||
|
||||
public MAssetReval(Properties ctx, int X_A_Asset_Reval_ID, String trxName)
|
||||
|
|
|
@ -38,7 +38,10 @@ import org.idempiere.fa.exceptions.AssetAlreadyDepreciatedException;
|
|||
public class MAssetTransfer extends X_A_Asset_Transfer
|
||||
implements DocAction
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 2997284714883099922L;
|
||||
/** Just Prepared Flag */
|
||||
private boolean m_justPrepared = false;
|
||||
|
||||
|
|
|
@ -20,7 +20,11 @@ import org.idempiere.fa.exceptions.AssetNotSupportedException;
|
|||
*/
|
||||
public class MDepreciation extends X_A_Depreciation
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -632058079835100100L;
|
||||
|
||||
/** Standard Constructor */
|
||||
public MDepreciation (Properties ctx, int A_Depreciation_ID, String trxName)
|
||||
|
|
|
@ -28,7 +28,12 @@ import org.idempiere.fa.exceptions.AssetException;
|
|||
public class MDepreciationEntry extends X_A_Depreciation_Entry
|
||||
implements DocAction
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 6631244784741228058L;
|
||||
|
||||
|
||||
/** Standard Constructor */
|
||||
public MDepreciationEntry(Properties ctx, int A_Depreciation_Entry_ID, String trxName)
|
||||
|
|
|
@ -21,8 +21,11 @@ import org.idempiere.fa.exceptions.AssetNotActiveException;
|
|||
|
||||
public class MDepreciationExp extends X_A_Depreciation_Exp
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 6731366890875525147L;
|
||||
private static CLogger s_log = CLogger.getCLogger(MDepreciationExp.class);
|
||||
private CLogger log = CLogger.getCLogger(this.getClass());
|
||||
|
||||
|
|
|
@ -23,8 +23,11 @@ import org.compiere.util.Util;
|
|||
*/
|
||||
public class MIFixedAsset extends X_I_FixedAsset
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -6394518107160329652L;
|
||||
/** Default depreciation method */
|
||||
private static final String s_defaultDepreciationType = "SL";
|
||||
|
||||
|
|
|
@ -29,7 +29,11 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class NoCurrencyConversionException extends AdempiereException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1593966161685137709L;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
|
@ -11,7 +11,11 @@ package org.idempiere.fa.exceptions;
|
|||
*/
|
||||
public class AssetAlreadyDepreciatedException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -2531645693567226455L;
|
||||
|
||||
public AssetAlreadyDepreciatedException()
|
||||
{
|
||||
|
|
|
@ -10,7 +10,11 @@ package org.idempiere.fa.exceptions;
|
|||
*/
|
||||
public class AssetCheckDocumentException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -8096988198983528889L;
|
||||
|
||||
public AssetCheckDocumentException(String additionalMessage)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,11 @@ import org.adempiere.exceptions.AdempiereException;
|
|||
*/
|
||||
public class AssetException extends AdempiereException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -2163958702697438015L;
|
||||
|
||||
public AssetException()
|
||||
{
|
||||
|
|
|
@ -9,7 +9,11 @@ package org.idempiere.fa.exceptions;
|
|||
*
|
||||
*/
|
||||
public class AssetInvoiceWithMixedLines_LRO extends AssetException {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 7477049497754422353L;
|
||||
|
||||
public AssetInvoiceWithMixedLines_LRO() {
|
||||
super("No new bills that contain both fixed and normal products");
|
||||
|
|
|
@ -9,7 +9,11 @@ package org.idempiere.fa.exceptions;
|
|||
*/
|
||||
public class AssetNotActiveException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -958395266586669844L;
|
||||
|
||||
public AssetNotActiveException(int A_Asset_ID)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,11 @@ package org.idempiere.fa.exceptions;
|
|||
*/
|
||||
public class AssetNotImplementedException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -7015542410574849684L;
|
||||
|
||||
public AssetNotImplementedException(String additionalMessage)
|
||||
{
|
||||
|
|
|
@ -9,7 +9,11 @@ package org.idempiere.fa.exceptions;
|
|||
*/
|
||||
public class AssetNotSupportedException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -9182818872935345775L;
|
||||
|
||||
public AssetNotSupportedException (String funcName, String actualValue)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,11 @@ import org.compiere.model.MProduct;
|
|||
*/
|
||||
public class AssetProductStockedException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 229246069558704158L;
|
||||
|
||||
public AssetProductStockedException(MProduct product)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,11 @@ import org.compiere.util.Util;
|
|||
*/
|
||||
public class AssetStatusChangedException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -2015948851153849647L;
|
||||
|
||||
public AssetStatusChangedException()
|
||||
{
|
||||
|
|
|
@ -9,7 +9,11 @@ package org.idempiere.fa.exceptions;
|
|||
*/
|
||||
public class DepreciationNoInPeriodException extends AssetException
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -6201871355182540721L;
|
||||
|
||||
public DepreciationNoInPeriodException(int A_Asset_ID, int Workfile_Period_ID, int DepExp_Period_ID)
|
||||
{
|
||||
|
|
|
@ -252,7 +252,12 @@ public class VTreeBOM extends CPanel implements FormPanel, ActionListener, TreeS
|
|||
DisplayType.Search, language, MProduct.COLUMNNAME_M_Product_ID, 0, false,
|
||||
" M_Product.IsSummary = 'N'");
|
||||
fieldProduct = new VLookup ("M_Product_ID", false, false, true, m_fieldProduct) {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1084743143950828526L;
|
||||
|
||||
public void setValue(Object value) {
|
||||
super.setValue(value);
|
||||
}
|
||||
|
|
|
@ -38,8 +38,11 @@ import org.compiere.util.TrxRunnable;
|
|||
|
||||
public class VCreateFromDialog extends CDialog implements ActionListener, TableModelListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -8242250391030501785L;
|
||||
private CreateFrom createFrom;
|
||||
private int windowNo;
|
||||
|
||||
|
|
|
@ -45,7 +45,6 @@ import org.compiere.util.Msg;
|
|||
|
||||
public class VCreateFromInvoiceUI extends CreateFromInvoice implements ActionListener, VetoableChangeListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private VCreateFromDialog dialog;
|
||||
|
||||
|
|
|
@ -39,7 +39,6 @@ import org.compiere.util.Msg;
|
|||
|
||||
public class VCreateFromRMAUI extends CreateFromRMA implements VetoableChangeListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private VCreateFromDialog dialog;
|
||||
|
||||
|
|
|
@ -55,7 +55,6 @@ import org.compiere.util.Msg;
|
|||
|
||||
public class VCreateFromStatementUI extends CreateFromStatement implements ActionListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private VCreateFromDialog dialog;
|
||||
|
||||
|
|
|
@ -36,10 +36,11 @@ import org.compiere.model.MTreeNode;
|
|||
*/
|
||||
public class VTreeTransferHandler extends TransferHandler {
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1L;
|
||||
private static final long serialVersionUID = 2799737958477528717L;
|
||||
|
||||
public int getSourceActions(JComponent c) {
|
||||
return TransferHandler.MOVE;
|
||||
|
|
|
@ -39,8 +39,11 @@ import org.zkoss.zul.Separator;
|
|||
|
||||
public class WCreateFromWindow extends Window implements EventListener<Event>, WTableModelListener, DialogEvents
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -3703236565441597403L;
|
||||
private CreateFrom createFrom;
|
||||
private int windowNo;
|
||||
|
||||
|
|
|
@ -65,8 +65,11 @@ import org.zkoss.zul.Toolbarbutton;
|
|||
*
|
||||
*/
|
||||
public class CalendarWindow extends Window implements EventListener<Event> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 5620139733919619691L;
|
||||
private Calendars calendars;
|
||||
private SimpleCalendarModel scm;
|
||||
private Toolbarbutton btnRefresh;
|
||||
|
|
|
@ -47,8 +47,11 @@ import org.zkoss.zul.Toolbarbutton;
|
|||
*/
|
||||
public class DPCalendar extends DashboardPanel implements EventListener<Event> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -224914882522997787L;
|
||||
private Calendars calendars;
|
||||
private SimpleCalendarModel scm;
|
||||
private Toolbarbutton btnCal, btnRefresh;
|
||||
|
|
|
@ -37,8 +37,11 @@ import org.zkoss.zul.South;
|
|||
*
|
||||
*/
|
||||
public class EventWindow extends Window implements EventListener<Event> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 4758066526040260586L;
|
||||
private DatetimeBox dtBeginDate, dtEndDate;
|
||||
private Textbox txtContent, txtHeaderColor, txtContentColor;
|
||||
private ConfirmPanel confirmPanel;
|
||||
|
|
|
@ -53,7 +53,11 @@ import org.zkoss.zul.Timebox;
|
|||
*
|
||||
*/
|
||||
public class RequestWindow extends Window implements EventListener<Event> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 7757368164776005797L;
|
||||
|
||||
private static CLogger log = CLogger.getCLogger(RequestWindow.class);
|
||||
|
||||
|
|
|
@ -2,7 +2,11 @@ package org.adempiere.webui.panel;
|
|||
|
||||
public class CustomForm extends ADForm
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -8498084996736578534L;
|
||||
|
||||
@Override
|
||||
protected void initForm()
|
||||
|
|
|
@ -45,8 +45,11 @@ import org.adempiere.util.ServerContextURLHandler;
|
|||
*/
|
||||
public class WebUIServlet extends DHtmlLayoutServlet
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -5625631664012999381L;
|
||||
/** Logger for the class * */
|
||||
private static CLogger logger;
|
||||
|
||||
|
|
Loading…
Reference in New Issue