org.opensaml.xml.security.x509
Class InternalX500DNHandler

java.lang.Object
  extended by org.opensaml.xml.security.x509.InternalX500DNHandler
All Implemented Interfaces:
X500DNHandler

public class InternalX500DNHandler
extends Object
implements X500DNHandler

Basic implementation of X500DNHandler which uses the internal built-in mechanisms provided by X500Principal directly.


Field Summary
 
Fields inherited from interface org.opensaml.xml.security.x509.X500DNHandler
FORMAT_RFC1779, FORMAT_RFC2253
 
Constructor Summary
InternalX500DNHandler()
           
 
Method Summary
 X500DNHandler clone()
          Clone the handler.
 byte[] getEncoded(X500Principal principal)
          Returns the distinguished name in ASN.1 DER encoded form.
 String getName(X500Principal principal)
          Returns a string representation of the X.500 distinguished name using the default format as defined in the underlying implementation.
 String getName(X500Principal principal, String format)
          Returns a string representation of the X.500 distinguished name using the specified format.
 X500Principal parse(byte[] name)
          Parse the ASN.1 DER encoding representation of a name and build a new principal instance.
 X500Principal parse(String name)
          Parse the string representation of a name and build a new principal instance.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InternalX500DNHandler

public InternalX500DNHandler()
Method Detail

getEncoded

public byte[] getEncoded(X500Principal principal)
Returns the distinguished name in ASN.1 DER encoded form.

Specified by:
getEncoded in interface X500DNHandler
Parameters:
principal - the principal name instance to serialize
Returns:
the serialized name in ASN.1 DER encoded form

getName

public String getName(X500Principal principal)
Returns a string representation of the X.500 distinguished name using the default format as defined in the underlying implementation.

Specified by:
getName in interface X500DNHandler
Parameters:
principal - the principal name instance to serialize
Returns:
the serialized string name

getName

public String getName(X500Principal principal,
                      String format)
Returns a string representation of the X.500 distinguished name using the specified format. The values and meanings of the format specifier are implementation dependent. Constants for two common standard formats are provided here as X500DNHandler.FORMAT_RFC1779 and X500DNHandler.FORMAT_RFC2253;

Specified by:
getName in interface X500DNHandler
Parameters:
principal - the principal name instance to serialize
format - the format specifier of the resulting serialized string name
Returns:
the serialized string name

parse

public X500Principal parse(String name)
Parse the string representation of a name and build a new principal instance.

Specified by:
parse in interface X500DNHandler
Parameters:
name - the name string to parse
Returns:
a new principal instance

parse

public X500Principal parse(byte[] name)
Parse the ASN.1 DER encoding representation of a name and build a new principal instance.

Specified by:
parse in interface X500DNHandler
Parameters:
name - a distinguished name in ASN.1 DER encoded form
Returns:
a new principal instance

clone

public X500DNHandler clone()
Clone the handler. Implementations which maintain instance-specific configuration data, etc, should implement this appropriately, possibly also implementing Cloneable.

Specified by:
clone in interface X500DNHandler
Overrides:
clone in class Object
Returns:
the cloned handler


Copyright © 1999-2012. All Rights Reserved.