Class NotificationReferences
- java.lang.Object
-
- com.hybris.cockpitng.config.notification.jaxb.NotificationReferences
-
public class NotificationReferences extends java.lang.ObjectJava class for NotificationReferences complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NotificationReferences"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="reference" type="{http://www.hybris.com/cockpitng/config/notifications}NotificationReference" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="linksEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.BooleanlinksEnabledprotected java.util.List<NotificationReference>reference
-
Constructor Summary
Constructors Constructor Description NotificationReferences()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<NotificationReference>getReference()Gets the value of the reference property.java.lang.BooleanisLinksEnabled()Gets the value of the linksEnabled property.voidsetLinksEnabled(java.lang.Boolean value)Sets the value of the linksEnabled property.
-
-
-
Field Detail
-
reference
protected java.util.List<NotificationReference> reference
-
linksEnabled
protected java.lang.Boolean linksEnabled
-
-
Method Detail
-
getReference
public java.util.List<NotificationReference> getReference()
Gets the value of the reference property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the reference property.For example, to add a new item, do as follows:
getReference().add(newItem);Objects of the following type(s) are allowed in the list
NotificationReference
-
isLinksEnabled
public java.lang.Boolean isLinksEnabled()
Gets the value of the linksEnabled property.- Returns:
- possible object is
Boolean
-
setLinksEnabled
public void setLinksEnabled(java.lang.Boolean value)
Sets the value of the linksEnabled property.- Parameters:
value- allowed object isBoolean
-
-