Class AuthenticationSequenceChannelType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.AuthenticationSequenceChannelType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class AuthenticationSequenceChannelType extends Object implements Serializable, Cloneable, Containerable
Channel specification for authentication sequence. It specifies whether this sequence is usable for a specific channel (user/GUI, REST, etc.)Java class for AuthenticationSequenceChannelType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AuthenticationSequenceChannelType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="channelId" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}documentation" minOccurs="0"/> <element name="default" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="urlSuffix" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_CHANNEL_ID
static ItemName
F_DEFAULT
static ItemName
F_DESCRIPTION
static ItemName
F_DOCUMENTATION
static ItemName
F_URL_SUFFIX
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description AuthenticationSequenceChannelType()
AuthenticationSequenceChannelType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticationSequenceChannelType
_default(Boolean value)
PrismContainerValue
asPrismContainerValue()
AuthenticationSequenceChannelType
channelId(String value)
AuthenticationSequenceChannelType
clone()
AuthenticationSequenceChannelType
description(String value)
AuthenticationSequenceChannelType
documentation(String value)
<X> X
end()
boolean
equals(Object object)
String
getChannelId()
String
getDescription()
String
getDocumentation()
String
getUrlSuffix()
int
hashCode()
Boolean
isDefault()
void
setChannelId(String value)
void
setDefault(Boolean value)
void
setDescription(String value)
void
setDocumentation(String value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.void
setUrlSuffix(String value)
String
toString()
AuthenticationSequenceChannelType
urlSuffix(String value)
-
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_CHANNEL_ID
public static final ItemName F_CHANNEL_ID
-
F_DESCRIPTION
public static final ItemName F_DESCRIPTION
-
F_DOCUMENTATION
public static final ItemName F_DOCUMENTATION
-
F_DEFAULT
public static final ItemName F_DEFAULT
-
F_URL_SUFFIX
public static final ItemName F_URL_SUFFIX
-
-
Constructor Detail
-
AuthenticationSequenceChannelType
public AuthenticationSequenceChannelType()
-
AuthenticationSequenceChannelType
public AuthenticationSequenceChannelType(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()
-
getChannelId
public String getChannelId()
-
setChannelId
public void setChannelId(String value)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String value)
-
getDocumentation
public String getDocumentation()
-
setDocumentation
public void setDocumentation(String value)
-
isDefault
public Boolean isDefault()
-
setDefault
public void setDefault(Boolean value)
-
getUrlSuffix
public String getUrlSuffix()
-
setUrlSuffix
public void setUrlSuffix(String value)
-
channelId
public AuthenticationSequenceChannelType channelId(String value)
-
description
public AuthenticationSequenceChannelType description(String value)
-
documentation
public AuthenticationSequenceChannelType documentation(String value)
-
_default
public AuthenticationSequenceChannelType _default(Boolean value)
-
urlSuffix
public AuthenticationSequenceChannelType urlSuffix(String value)
-
clone
public AuthenticationSequenceChannelType clone()
-
-