org.opensaml.saml1.core
Interface NameIdentifier

All Superinterfaces:
SAMLObject, ValidatingXMLObject, XMLObject
All Known Implementing Classes:
NameIdentifierImpl

public interface NameIdentifier
extends SAMLObject

Interface to define how a NameIdentifier element behaves.


Field Summary
static String DEFAULT_ELEMENT_LOCAL_NAME
          Element name, no namespace.
static QName DEFAULT_ELEMENT_NAME
          Default element name.
static String EMAIL
          URI for email name format.
static String FORMAT_ATTRIB_NAME
          Name for the attribute which defines Name Qualifier.
static String NAMEQUALIFIER_ATTRIB_NAME
          Name for the attribute which defines Name Qualifier.
static String TYPE_LOCAL_NAME
          Local name of the XSI type.
static QName TYPE_NAME
          QName of the XSI type.
static String UNSPECIFIED
          URI for unspecified name format.
static String WIN_DOMAIN_QUALIFIED
          URI for windows domain qualified name name format.
static String X509_SUBJECT
          URI for X509 subject name format.
 
Method Summary
 String getFormat()
          Gets the format of this identifier.
 String getNameIdentifier()
          Gets the identifier.
 String getNameQualifier()
          Gets the name qualifier for this identifier.
 void setFormat(String format)
          Sets the format of this identifier.
 void setNameIdentifier(String nameIdentifier)
          Sets the identifier.
 void setNameQualifier(String nameQualifier)
          Sets the name qualifier for this identifier.
 
Methods inherited from interface org.opensaml.xml.validation.ValidatingXMLObject
deregisterValidator, getValidators, registerValidator, validate
 
Methods inherited from interface org.opensaml.xml.XMLObject
addNamespace, detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, removeNamespace, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
 

Field Detail

DEFAULT_ELEMENT_LOCAL_NAME

static final String DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace.

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.


NAMEQUALIFIER_ATTRIB_NAME

static final String NAMEQUALIFIER_ATTRIB_NAME
Name for the attribute which defines Name Qualifier.

See Also:
Constant Field Values

FORMAT_ATTRIB_NAME

static final String FORMAT_ATTRIB_NAME
Name for the attribute which defines Name Qualifier.

See Also:
Constant Field Values

UNSPECIFIED

static final String UNSPECIFIED
URI for unspecified name format.

See Also:
Constant Field Values

EMAIL

static final String EMAIL
URI for email name format.

See Also:
Constant Field Values

X509_SUBJECT

static final String X509_SUBJECT
URI for X509 subject name format.

See Also:
Constant Field Values

WIN_DOMAIN_QUALIFIED

static final String WIN_DOMAIN_QUALIFIED
URI for windows domain qualified name name format.

See Also:
Constant Field Values
Method Detail

getNameQualifier

String getNameQualifier()
Gets the name qualifier for this identifier.

Returns:
name qualifier for this identifier

setNameQualifier

void setNameQualifier(String nameQualifier)
Sets the name qualifier for this identifier.

Parameters:
nameQualifier - name qualifier for this identifier

getFormat

String getFormat()
Gets the format of this identifier.

Returns:
format of this identifier

setFormat

void setFormat(String format)
Sets the format of this identifier.

Parameters:
format - format of this identifier

getNameIdentifier

String getNameIdentifier()
Gets the identifier.

Returns:
the identifier

setNameIdentifier

void setNameIdentifier(String nameIdentifier)
Sets the identifier.

Parameters:
nameIdentifier - the identifier.


Copyright © 1999-2013. All Rights Reserved.