Interface SAML2IdPEntity
-
- All Superinterfaces:
Entity,ProvidedKeyEntity,Serializable
- All Known Implementing Classes:
JPASAML2IdPEntity
public interface SAML2IdPEntity extends ProvidedKeyEntity
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getEncryptionCertificate()byte[]getEncryptionKey()byte[]getMetadata()byte[]getSigningCertificate()byte[]getSigningKey()voidsetEncryptionCertificate(byte[] encryptionCertificate)voidsetEncryptionKey(byte[] encryptionKey)voidsetMetadata(byte[] metadata)voidsetSigningCertificate(byte[] signingCertificate)voidsetSigningKey(byte[] signingKey)-
Methods inherited from interface org.apache.syncope.core.persistence.api.entity.ProvidedKeyEntity
setKey
-
-
-
-
Method Detail
-
getMetadata
byte[] getMetadata()
-
setMetadata
void setMetadata(byte[] metadata)
-
getSigningCertificate
byte[] getSigningCertificate()
-
setSigningCertificate
void setSigningCertificate(byte[] signingCertificate)
-
getSigningKey
byte[] getSigningKey()
-
setSigningKey
void setSigningKey(byte[] signingKey)
-
getEncryptionCertificate
byte[] getEncryptionCertificate()
-
setEncryptionCertificate
void setEncryptionCertificate(byte[] encryptionCertificate)
-
getEncryptionKey
byte[] getEncryptionKey()
-
setEncryptionKey
void setEncryptionKey(byte[] encryptionKey)
-
-