All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.security.impl.policy.KeyStore Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.ws.security.impl.policy;

import com.sun.xml.ws.policy.AssertionSet;
import com.sun.xml.ws.policy.PolicyAssertion;
import com.sun.xml.ws.policy.sourcemodel.AssertionData;
import java.util.Collection;
import javax.xml.namespace.QName;


/**
 *
 * @author [email protected]
 */
public class KeyStore extends PolicyAssertion implements com.sun.xml.ws.security.policy.KeyStore{

    private static QName loc = new QName("location");
    private static QName type = new QName("type");
    private static QName passwd = new QName("storepass");
    private static QName alias = new QName("alias");
    private static QName keypass = new QName("keypass");
    private static QName aliasSelector = new QName("aliasSelector");
    private static QName callbackHandler = new QName("callbackHandler");

    private char [] password = null;
    private static QName keyStoreLoginModuleConfigName = new QName("keystoreloginmoduleconfig");
    /** Creates a new instance of KeyStore */
    public KeyStore() {
    }

    public KeyStore(AssertionData name,Collection nestedAssertions, AssertionSet nestedAlternative) {
        super(name,nestedAssertions,nestedAlternative);
    }
    @Override
    public String getLocation() {
        return this.getAttributeValue(loc);
    }

    @Override
    public String getType() {
        return this.getAttributeValue(type);
    }

    @Override
    public char[] getPassword() {
        if(password == null){
            String val  = this.getAttributeValue(passwd);
            if(val != null){
                password = val.toCharArray();
            }
        }
        return password;
    }

    @Override
    public String getAlias() {
        return this.getAttributeValue(alias);
    }

    @Override
    public String getKeyPassword() {
        return this.getAttributeValue(keypass);
    }

    @Override
    public String getAliasSelectorClassName() {
        return this.getAttributeValue(aliasSelector);
    }

    @Override
    public String getKeyStoreCallbackHandler() {
        return this.getAttributeValue(callbackHandler);
    }

    @Override
    public String getKeyStoreLoginModuleConfigName() {
        return this.getAttributeValue(keyStoreLoginModuleConfigName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy