Class RecordImpl
- All Implemented Interfaces:
Record,Serializable
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetId()Gets the primary (numerical) Id of the record.getId2()Gets the secondary Id of the record.getId3()Gets the tertiary Id of the record.Gets the string Id of the record.voidSets the primary Id of the record.voidSets the secondary Id of the record.voidSets the tertiary Id of the record.voidsetStringId(String stringId) Sets the string Id of the record.
-
Constructor Details
-
RecordImpl
public RecordImpl()
-
-
Method Details
-
getId
Description copied from interface:RecordGets the primary (numerical) Id of the record.
Gets the primary (numerical) Id of the record. This should be non-zero, also in cases, when no numerical Id is used (in this case Id is often set to 1).
-
setId
Description copied from interface:RecordSets the primary Id of the record.
Sets he primary Id of the record. See
Record.getId()for further information. -
getId2
Description copied from interface:RecordGets the secondary Id of the record.
Gets the secondary Id of the record. In most cases this is set to zero.
-
setId2
Description copied from interface:RecordSets the secondary Id of the record.
Sets the secondary Id of the record. If no secondary Id is required for the underlying content system, this should be just set to zero.
-
getId3
Description copied from interface:RecordGets the tertiary Id of the record.
Gets the tertiary Id of the record. In most cases this is just set to zero.
-
setId3
Description copied from interface:RecordSets the tertiary Id of the record.
Sets the tertiary Id of the record. If no tertiary Id is required for the underlying content system, this should be just set to zero.
-
getStringId
Description copied from interface:RecordGets the string Id of the record.
Gets the string Id of the record. In most cases this is the Id, which actually identifies a record in the underlying content system.
- Specified by:
getStringIdin interfaceRecord- Returns:
- the string Id of the record.
-
setStringId
Description copied from interface:RecordSets the string Id of the record.
Sets the string Id of the record. See
Record.getStringId()for further information.- Specified by:
setStringIdin interfaceRecord- Parameters:
stringId- the string Id of the record
-