Package org.opensaml.xmlsec.encryption
Interface DerivedKey
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringID_ATTRIBUTE_NAMEAlgorithm attribute name.static StringRECIPIENT_ATTRIBUTE_NAMERecipient attribute name.static StringTYPE_ATTRIBUTE_NAMEAlgorithm attribute name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DerivedKeyNamegetDerivedKeyName()Get the DerivedKeyName child element.StringgetId()Gets the Id attribute.KeyDerivationMethodgetKeyDerivationMethod()Get the KeyDerivationMethod child element.MasterKeyNamegetMasterKeyName()Get the MasterKeyName child element.StringgetRecipient()Gets the Recipient attribute.ReferenceListgetReferenceList()Get the ReferenceList child element.StringgetType()Gets the Type attribute.voidsetDerivedKeyName(DerivedKeyName name)Set the DerivedKeyName child element.voidsetId(String id)Sets the Id attribute.voidsetKeyDerivationMethod(KeyDerivationMethod method)Set the KeyDerivationMethod child element.voidsetMasterKeyName(MasterKeyName name)Set the MasterKeyName child element.voidsetRecipient(String recipient)Sets the Recipient attribute.voidsetReferenceList(ReferenceList referenceList)Set the ReferenceList child element.voidsetType(String type)Sets the Type attribute.-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
DEFAULT_ELEMENT_LOCAL_NAME
static final String DEFAULT_ELEMENT_LOCAL_NAME
Element local name.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
RECIPIENT_ATTRIBUTE_NAME
static final String RECIPIENT_ATTRIBUTE_NAME
Recipient attribute name.- See Also:
- Constant Field Values
-
ID_ATTRIBUTE_NAME
static final String ID_ATTRIBUTE_NAME
Algorithm attribute name.- See Also:
- Constant Field Values
-
TYPE_ATTRIBUTE_NAME
static final String TYPE_ATTRIBUTE_NAME
Algorithm attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getKeyDerivationMethod
@Nullable KeyDerivationMethod getKeyDerivationMethod()
Get the KeyDerivationMethod child element.- Returns:
- the element
-
setKeyDerivationMethod
void setKeyDerivationMethod(@Nullable KeyDerivationMethod method)Set the KeyDerivationMethod child element.- Parameters:
method- the key derivation method
-
getReferenceList
@Nullable ReferenceList getReferenceList()
Get the ReferenceList child element.- Returns:
- the element
-
setReferenceList
void setReferenceList(@Nullable ReferenceList referenceList)Set the ReferenceList child element.- Parameters:
referenceList- the list
-
getDerivedKeyName
@Nullable DerivedKeyName getDerivedKeyName()
Get the DerivedKeyName child element.- Returns:
- the element
-
setDerivedKeyName
void setDerivedKeyName(@Nullable DerivedKeyName name)Set the DerivedKeyName child element.- Parameters:
name- the key name
-
getMasterKeyName
@Nullable MasterKeyName getMasterKeyName()
Get the MasterKeyName child element.- Returns:
- the element
-
setMasterKeyName
void setMasterKeyName(@Nullable MasterKeyName name)Set the MasterKeyName child element.- Parameters:
name- the key name
-
getRecipient
@Nullable String getRecipient()
Gets the Recipient attribute.- Returns:
- the recipient
-
setRecipient
void setRecipient(@Nullable String recipient)Sets the Recipient attribute.- Parameters:
recipient- the recipient
-
getId
@Nullable String getId()
Gets the Id attribute.- Returns:
- the id
-
setId
void setId(@Nullable String id)Sets the Id attribute.- Parameters:
id- the id
-
getType
@Nullable String getType()
Gets the Type attribute.- Returns:
- the type
-
setType
void setType(@Nullable String type)Sets the Type attribute.- Parameters:
type- the type
-
-