Package org.opensaml.saml.ext.saml2alg
Interface SigningMethod
-
- All Superinterfaces:
ElementExtensibleXMLObject,SAMLObject,XMLObject
public interface SigningMethod extends SAMLObject, ElementExtensibleXMLObject
SAML v2.0 Metadata Profile for Algorithm Support Version 1.0 SigningMethod SAMLObject.
-
-
Field Summary
Fields Modifier and Type Field Description static StringALGORITHM_ATTRIB_NAMEAlgorithm attribute name.static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringMAX_KEY_SIZE_ATTRIB_NAMEMaxKeySize attribute name.static StringMIN_KEY_SIZE_ATTRIB_NAMEMinKeySize 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 StringgetAlgorithm()Get the value of the Algorithm URI attribute.IntegergetMaxKeySize()Get the value of the MaxKeySize attribute.IntegergetMinKeySize()Get the value of the MinKeySize attribute.voidsetAlgorithm(String value)Get the value of the Algorithm URI attribute.voidsetMaxKeySize(Integer value)Set the value of the MaxKeySize attribute.voidsetMinKeySize(Integer value)Set the value of the MinKeySize attribute.-
Methods inherited from interface org.opensaml.core.xml.ElementExtensibleXMLObject
getUnknownXMLObjects, getUnknownXMLObjects
-
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.
-
ALGORITHM_ATTRIB_NAME
static final String ALGORITHM_ATTRIB_NAME
Algorithm attribute name.- See Also:
- Constant Field Values
-
MIN_KEY_SIZE_ATTRIB_NAME
static final String MIN_KEY_SIZE_ATTRIB_NAME
MinKeySize attribute name.- See Also:
- Constant Field Values
-
MAX_KEY_SIZE_ATTRIB_NAME
static final String MAX_KEY_SIZE_ATTRIB_NAME
MaxKeySize attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getAlgorithm
@Nullable String getAlgorithm()
Get the value of the Algorithm URI attribute.- Returns:
- the algorithm URI
-
setAlgorithm
void setAlgorithm(@Nullable String value)Get the value of the Algorithm URI attribute.- Parameters:
value- the algorithm URI
-
getMinKeySize
@Nullable Integer getMinKeySize()
Get the value of the MinKeySize attribute.- Returns:
- the MinKeySize value
-
setMinKeySize
void setMinKeySize(@Nullable Integer value)Set the value of the MinKeySize attribute.- Parameters:
value- the MinKeySize value
-
getMaxKeySize
@Nullable Integer getMaxKeySize()
Get the value of the MaxKeySize attribute.- Returns:
- the MaxKeySize value
-
setMaxKeySize
void setMaxKeySize(@Nullable Integer value)Set the value of the MaxKeySize attribute.- Parameters:
value- the MaxKeySize value
-
-