FileDocCategorySizeDatePackage
KeyStore.javaAPI DocExample3813Mon Jun 04 22:45:56 BST 2007com.sun.xml.ws.security.impl.policy

KeyStore

public class KeyStore extends com.sun.xml.ws.policy.PolicyAssertion implements com.sun.xml.ws.security.policy.KeyStore
author
K.Venugopal@sun.com

(Omit source code)

Fields Summary
private static QName
loc
private static QName
type
private static QName
passwd
private static QName
alias
private static QName
keypass
private static QName
aliasSelector
private char[]
password
Constructors Summary
public KeyStore()
Creates a new instance of KeyStore

           
      
    
public KeyStore(com.sun.xml.ws.policy.sourcemodel.AssertionData name, Collection nestedAssertions, com.sun.xml.ws.policy.AssertionSet nestedAlternative)

        super(name,nestedAssertions,nestedAlternative);
    
Methods Summary
public java.lang.StringgetAlias()

        return this.getAttributeValue(alias);
    
public java.lang.StringgetAliasSelectorClassName()

        return this.getAttributeValue(aliasSelector);
    
public java.lang.StringgetKeyPassword()

        return this.getAttributeValue(keypass);
    
public java.lang.StringgetLocation()

        return this.getAttributeValue(loc);
    
public char[]getPassword()

        if(password == null){
            String val  = this.getAttributeValue(passwd);
            if(val != null){
                password = val.toCharArray();
            }
        }
        return password;
    
public java.lang.StringgetType()

        return this.getAttributeValue(type);