minor: Implement MSysConfig.toString()
This commit is contained in:
parent
bd82b776db
commit
da760c3d18
|
@ -37,7 +37,7 @@ public class MSysConfig extends X_AD_SysConfig
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
private static final long serialVersionUID = 8163525037701786038L;
|
private static final long serialVersionUID = -5271070197457739666L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Standard Constructor
|
* Standard Constructor
|
||||||
|
@ -499,4 +499,14 @@ public class MSysConfig extends X_AD_SysConfig
|
||||||
return true;
|
return true;
|
||||||
} // beforeSave
|
} // beforeSave
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return getClass().getSimpleName()+"["+get_ID()
|
||||||
|
+", "+getName()+"="+getValue()
|
||||||
|
+", ConfigurationLevel="+getConfigurationLevel()
|
||||||
|
+", Client|Org="+getAD_Client_ID()+"|"+getAD_Org_ID()
|
||||||
|
+", EntityType="+getEntityType()
|
||||||
|
+"]";
|
||||||
|
}
|
||||||
} // MSysConfig
|
} // MSysConfig
|
Loading…
Reference in New Issue