FileDocCategorySizeDatePackage
KeyIdentifierImpl.javaAPI DocExample3094Tue May 29 16:57:02 BST 2007com.sun.xml.ws.security.trust.impl.elements.str

KeyIdentifierImpl

public class KeyIdentifierImpl extends com.sun.xml.ws.security.secext10.KeyIdentifierType implements com.sun.xml.ws.security.trust.elements.str.KeyIdentifier
KeyIdentifier implementation

Fields Summary
Constructors Summary
public KeyIdentifierImpl()

        // default c'tor
    
public KeyIdentifierImpl(String valueType, String encodingType)

        setValueType(valueType);
        setEncodingType(encodingType);
    
public KeyIdentifierImpl(com.sun.xml.ws.security.secext10.KeyIdentifierType kidType)

        this(kidType.getValueType(), kidType.getEncodingType());
        setValue(kidType.getValue());
    
Methods Summary
public java.net.URIgetEncodingTypeURI()

        return URI.create(super.getEncodingType());
    
public java.lang.StringgetType()

        return "KeyIdentifier";
    
public java.net.URIgetValueTypeURI()

        return URI.create(super.getValueType());