Package org.apache.syncope.common.lib.to
Class SAML2SP4UIIdPTO
- java.lang.Object
-
- org.apache.syncope.common.lib.to.ItemContainer
-
- org.apache.syncope.common.lib.to.SAML2SP4UIIdPTO
-
- All Implemented Interfaces:
Serializable
,BaseBean
,EntityTO
public class SAML2SP4UIIdPTO extends ItemContainer implements EntityTO
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SAML2SP4UIIdPTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getActions()
SAML2BindingType
getBindingType()
String
getEntityID()
String
getKey()
String
getMetadata()
String
getName()
String
getRequestedAuthnContextProvider()
UserTO
getUserTemplate()
boolean
isCreateUnmatching()
boolean
isLogoutSupported()
boolean
isSelfRegUnmatching()
boolean
isUpdateMatching()
void
setBindingType(SAML2BindingType bindingType)
void
setCreateUnmatching(boolean createUnmatching)
void
setEntityID(String entityID)
void
setKey(String key)
void
setLogoutSupported(boolean logoutSupported)
void
setMetadata(String metadata)
void
setName(String name)
void
setRequestedAuthnContextProvider(String requestedAuthnContextProvider)
void
setSelfRegUnmatching(boolean selfRegUnmatching)
void
setUpdateMatching(boolean updateMatching)
void
setUserTemplate(UserTO userTemplate)
-
Methods inherited from class org.apache.syncope.common.lib.to.ItemContainer
add, addConnObjectKeyItem, equals, getConnObjectKeyItem, getItems, hashCode, setConnObjectKeyItem
-
-
-
-
Method Detail
-
getEntityID
public String getEntityID()
-
setEntityID
public void setEntityID(String entityID)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getMetadata
public String getMetadata()
-
setMetadata
public void setMetadata(String metadata)
-
getBindingType
public SAML2BindingType getBindingType()
-
setBindingType
public void setBindingType(SAML2BindingType bindingType)
-
isLogoutSupported
public boolean isLogoutSupported()
-
setLogoutSupported
public void setLogoutSupported(boolean logoutSupported)
-
getRequestedAuthnContextProvider
public String getRequestedAuthnContextProvider()
-
setRequestedAuthnContextProvider
public void setRequestedAuthnContextProvider(String requestedAuthnContextProvider)
-
isCreateUnmatching
public boolean isCreateUnmatching()
-
setCreateUnmatching
public void setCreateUnmatching(boolean createUnmatching)
-
isSelfRegUnmatching
public boolean isSelfRegUnmatching()
-
setSelfRegUnmatching
public void setSelfRegUnmatching(boolean selfRegUnmatching)
-
isUpdateMatching
public boolean isUpdateMatching()
-
setUpdateMatching
public void setUpdateMatching(boolean updateMatching)
-
getUserTemplate
public UserTO getUserTemplate()
-
setUserTemplate
public void setUserTemplate(UserTO userTemplate)
-
-