com.novell.db.object.bean
Class GlobalDataSyncConfigBean

java.lang.Object
  extended by com.novell.sentinel.client.bean.SentinelBean
      extended by com.novell.db.object.bean.GlobalDataSyncConfigBean

public class GlobalDataSyncConfigBean
extends SentinelBean

An automatically-generated "bean" class for the Sentinel data object type 'GlobalDataSyncConfig'.

The description of the type is:

"null"

The Sentinel data object bean classes are designed to be used to transport data to and from the Sentinel server. There exists a supporting infrastructure that handles the serialization/parsing of the data to/from the JSON transport format and which handles the actual HTTP transport.

A more complete description of Sentinel data object beans is found in the description of SentinelBean.

See Also:
SentinelBean, BeanTransporter

Field Summary
static String RETENTIONPERIOD
          The "bean name" of the Sentinel data object field 'RetentionPeriod'.
 
Constructor Summary
  GlobalDataSyncConfigBean()
          Construct an instance of the bean class.
protected GlobalDataSyncConfigBean(BeanMetaData<? extends SentinelBean> metadata)
          Constructor for use by derived classes.
 
Method Summary
 void clearRetentionPeriod()
          Clear any current value for the 'RetentionPeriod' field in the bean.
 GlobalDataSyncConfigBean clone()
          Create a duplicate of this bean instance, including all field values.
static BeanMetaData<? extends GlobalDataSyncConfigBean> getBeanMetaData()
          Get the metadata class instance for this type.
 int getRetentionPeriod()
          Get the value for the 'RetentionPeriod' field.
 boolean isRetentionPeriodClear()
          Get whether the value for the 'RetentionPeriod' field is clear or not.
 boolean isRetentionPeriodNull()
          Get whether the 'RetentionPeriod' field has been set to Null or not.
 void setRetentionPeriod(int retentionPeriod)
          Set the value for the 'RetentionPeriod' field.
 void setRetentionPeriodNull()
          Set to Null any current value for the 'RetentionPeriod' field in the bean.
 
Methods inherited from class com.novell.sentinel.client.bean.SentinelBean
clearField, cloneBean, equals, fields, getBeanName, getBeanValue, getField, getFieldNoNull, getLink, getMetaData, isFieldClear, isFieldNull, isLinkClear, setField, setFieldNull, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RETENTIONPERIOD

public static final String RETENTIONPERIOD
The "bean name" of the Sentinel data object field 'RetentionPeriod'. The value is ""RetentionPeriod"".

The description of the 'RetentionPeriod' field is:

"No description provided."

See Also:
Constant Field Values
Constructor Detail

GlobalDataSyncConfigBean

public GlobalDataSyncConfigBean()
Construct an instance of the bean class.


GlobalDataSyncConfigBean

protected GlobalDataSyncConfigBean(BeanMetaData<? extends SentinelBean> metadata)
Constructor for use by derived classes.

Parameters:
metadata - The metadata instance for the derived bean class. Normally this constructor will only be called by generated code.
Method Detail

getRetentionPeriod

public int getRetentionPeriod()
Get the value for the 'RetentionPeriod' field. The description of the 'RetentionPeriod' field is:

"No description provided."

Returns:
The field's value in the bean instance, if any (may return null).
See Also:
RETENTIONPERIOD

isRetentionPeriodNull

public boolean isRetentionPeriodNull()
Get whether the 'RetentionPeriod' field has been set to Null or not. The description of the 'RetentionPeriod' field is:

"No description provided."

See the description of Null values.

Returns:
true if the field value has been marked as null, false otherwise.
See Also:
setRetentionPeriodNull(), RETENTIONPERIOD

isRetentionPeriodClear

public boolean isRetentionPeriodClear()
Get whether the value for the 'RetentionPeriod' field is clear or not. The description of the 'RetentionPeriod' field is:

"No description provided."

See the description of cleared values.

Returns:
true if the field value has been cleared, false otherwise.
See Also:
clearRetentionPeriod(), RETENTIONPERIOD

setRetentionPeriod

public void setRetentionPeriod(int retentionPeriod)
Set the value for the 'RetentionPeriod' field. The description of the 'RetentionPeriod' field is:

"No description provided."

Parameters:
retentionPeriod - Value to set
See Also:
RETENTIONPERIOD

clearRetentionPeriod

public void clearRetentionPeriod()
Clear any current value for the 'RetentionPeriod' field in the bean. The description of the 'RetentionPeriod' field is:

"No description provided."

Using this method will not clear the server value when the bean is PUT to the server. Use the setRetentionPeriodNull() method to clear the server's value.

See the description of cleared values.

See Also:
RETENTIONPERIOD

setRetentionPeriodNull

public void setRetentionPeriodNull()
Set to Null any current value for the 'RetentionPeriod' field in the bean. The description of the 'RetentionPeriod' field is:

"No description provided."

Using this method will clear the server value when the bean is PUT to the server. Use the clearRetentionPeriod() method to avoid clearing the server's value.

See the description of Null values.

See Also:
RETENTIONPERIOD

getBeanMetaData

public static BeanMetaData<? extends GlobalDataSyncConfigBean> getBeanMetaData()
Get the metadata class instance for this type.

The metadata is used primarily as a parameter to a BeanTransporter implementation''s constructor.


clone

public GlobalDataSyncConfigBean clone()
Create a duplicate of this bean instance, including all field values.

Overrides:
clone in class Object