Class NotificationConfigurationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.NotificationConfigurationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class NotificationConfigurationType extends Object implements Serializable, Cloneable, Containerable
A configuration for user notifications. It defines how should be notifications created in various situations, e.g. when an account is created or removed.Java class for NotificationConfigurationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NotificationConfigurationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="handler" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}EventHandlerType" maxOccurs="unbounded" minOccurs="0"/> <element name="mail" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}MailConfigurationType" minOccurs="0"/> <element name="sms" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}SmsConfigurationType" maxOccurs="unbounded" minOccurs="0"/> <element name="file" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}FileConfigurationType" maxOccurs="unbounded" minOccurs="0"/> <element name="customTransport" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}CustomTransportConfigurationType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_CUSTOM_TRANSPORT
static ItemName
F_FILE
static ItemName
F_HANDLER
static ItemName
F_MAIL
static ItemName
F_SMS
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description NotificationConfigurationType()
NotificationConfigurationType(PrismContext prismContext)
-
Method Summary
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.prism.Containerable
cloneWithoutId, debugDump
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_HANDLER
public static final ItemName F_HANDLER
-
F_MAIL
public static final ItemName F_MAIL
-
F_SMS
public static final ItemName F_SMS
-
F_FILE
public static final ItemName F_FILE
-
F_CUSTOM_TRANSPORT
public static final ItemName F_CUSTOM_TRANSPORT
-
-
Constructor Detail
-
NotificationConfigurationType
public NotificationConfigurationType()
-
NotificationConfigurationType
public NotificationConfigurationType(PrismContext prismContext)
-
-
Method Detail
-
asPrismContainerValue
public PrismContainerValue asPrismContainerValue()
- Specified by:
asPrismContainerValue
in interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:Containerable
Setup value to the containerable representation. This is used to after (empty) containerable is created to initialize it with a correct prism container value. Note: This method DOES NOT change the container value parent.- Specified by:
setupContainerValue
in interfaceContainerable
-
end
public <X> X end()
-
getHandler
public List<EventHandlerType> getHandler()
-
createHandlerList
public List<EventHandlerType> createHandlerList()
-
getMail
public MailConfigurationType getMail()
-
setMail
public void setMail(MailConfigurationType value)
-
getSms
public List<SmsConfigurationType> getSms()
-
createSmsList
public List<SmsConfigurationType> createSmsList()
-
getFile
public List<FileConfigurationType> getFile()
-
createFileList
public List<FileConfigurationType> createFileList()
-
getCustomTransport
public List<CustomTransportConfigurationType> getCustomTransport()
-
createCustomTransportList
public List<CustomTransportConfigurationType> createCustomTransportList()
-
handler
public NotificationConfigurationType handler(EventHandlerType value)
-
beginHandler
public EventHandlerType beginHandler()
-
mail
public NotificationConfigurationType mail(MailConfigurationType value)
-
beginMail
public MailConfigurationType beginMail()
-
sms
public NotificationConfigurationType sms(SmsConfigurationType value)
-
beginSms
public SmsConfigurationType beginSms()
-
file
public NotificationConfigurationType file(FileConfigurationType value)
-
beginFile
public FileConfigurationType beginFile()
-
customTransport
public NotificationConfigurationType customTransport(CustomTransportConfigurationType value)
-
beginCustomTransport
public CustomTransportConfigurationType beginCustomTransport()
-
clone
public NotificationConfigurationType clone()
-
-