Class ChannelTemplateLink
- java.lang.Object
-
- lumis.portal.structure.sync.model.common.ChannelTemplateLink
-
- All Implemented Interfaces:
Serializable
public class ChannelTemplateLink extends Object implements Serializable
Model for a channel template link. Most attributes are not included in the XML and must be set manually during XML unmarshalling.Documentation in this class focus synchronization behavior. About the use behind the fields in the portal, see
ChannelTemplateLinkConfig
.- Since:
- 6.2.0
- Version:
- $Revision: 23904 $ $Date: 2020-06-16 12:23:44 -0300 (Tue, 16 Jun 2020) $
- See Also:
ChannelTemplateLinkConfig
, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChannelTemplateLink.LinkType
-
Constructor Summary
Constructors Constructor Description ChannelTemplateLink()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDestinationChannelId()
String
getDestinationId()
ChannelTemplateLink.LinkType
getItemType()
String
getSourceId()
String
getTemplateChannelId()
static void
save(ChannelTemplateLink channelTemplateLink, org.hibernate.Session session)
Save channel template link.void
setDestinationChannelId(String destinationChannelId)
void
setDestinationId(String destinationId)
void
setItemType(ChannelTemplateLink.LinkType itemType)
void
setSourceId(String sourceId)
void
setTemplateChannelId(String templateChannelId)
-
-
-
Method Detail
-
getTemplateChannelId
public String getTemplateChannelId()
-
setTemplateChannelId
public void setTemplateChannelId(String templateChannelId)
-
getDestinationChannelId
public String getDestinationChannelId()
-
setDestinationChannelId
public void setDestinationChannelId(String destinationChannelId)
-
getDestinationId
public String getDestinationId()
-
setDestinationId
public void setDestinationId(String destinationId)
-
getSourceId
public String getSourceId()
-
setSourceId
public void setSourceId(String sourceId)
-
getItemType
public ChannelTemplateLink.LinkType getItemType()
-
setItemType
public void setItemType(ChannelTemplateLink.LinkType itemType)
-
save
public static void save(ChannelTemplateLink channelTemplateLink, org.hibernate.Session session)
Save channel template link.- Parameters:
channelTemplateLink
- the channel template link.session
- the hibernate session.- Since:
- 12.4.0
-
-