Class CometPageTemplateElementMetadata
- java.lang.Object
-
- com.priint.pubserver.comet.entity.pagetemplate.CometPageTemplateElementMetadata
-
- All Implemented Interfaces:
java.io.Serializable
public class CometPageTemplateElementMetadata extends java.lang.Object implements java.io.SerializableThe Class CometPageTemplateElementMetadata.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CometPageTemplateElementMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ContentMetaData>getMetadata()Gets metadata assigned to this page template element.intgetSequence()Gets the sequence number of the page template element.intgetUid()Gets the uid identifier of the page template element.voidsetMetadata(java.util.List<ContentMetaData> metadata)Sets metadata that will be assigned to this page template element .voidsetSequence(int sequence)Sets the sequence number of the page template element.voidsetUid(int uid)Sets the uid identifier of the page template element.
-
-
-
Method Detail
-
getUid
public int getUid()
Gets the uid identifier of the page template element.- Returns:
- uid of the page template element
-
setUid
public void setUid(int uid)
Sets the uid identifier of the page template element.- Parameters:
uid- of the page template element
-
getSequence
public int getSequence()
Gets the sequence number of the page template element.- Returns:
- the sequence number of the page template element
-
setSequence
public void setSequence(int sequence)
Sets the sequence number of the page template element.- Parameters:
sequence- the new sequence
-
getMetadata
public java.util.List<ContentMetaData> getMetadata()
Gets metadata assigned to this page template element.
- Returns:
- list of ContentMetaData objects
-
setMetadata
public void setMetadata(java.util.List<ContentMetaData> metadata)
Sets metadata that will be assigned to this page template element .
- Parameters:
metadata- the new metadata
-
-