Class NotificationTimeouts
- java.lang.Object
-
- com.hybris.cockpitng.config.notification.jaxb.NotificationTimeouts
-
public class NotificationTimeouts extends java.lang.ObjectJava class for NotificationTimeouts complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NotificationTimeouts"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="timeout" type="{http://www.hybris.com/cockpitng/config/notifications}NotificationTimeout" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.math.BigInteger_defaultprotected java.util.List<NotificationTimeout>timeout
-
Constructor Summary
Constructors Constructor Description NotificationTimeouts()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigIntegergetDefault()Gets the value of the default property.java.util.List<NotificationTimeout>getTimeout()Gets the value of the timeout property.voidsetDefault(java.math.BigInteger value)Sets the value of the default property.
-
-
-
Field Detail
-
timeout
protected java.util.List<NotificationTimeout> timeout
-
_default
protected java.math.BigInteger _default
-
-
Method Detail
-
getTimeout
public java.util.List<NotificationTimeout> getTimeout()
Gets the value of the timeout 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 timeout property.For example, to add a new item, do as follows:
getTimeout().add(newItem);Objects of the following type(s) are allowed in the list
NotificationTimeout
-
getDefault
public java.math.BigInteger getDefault()
Gets the value of the default property.- Returns:
- possible object is
BigInteger
-
setDefault
public void setDefault(java.math.BigInteger value)
Sets the value of the default property.- Parameters:
value- allowed object isBigInteger
-
-