Package org.glite.authz.pap.client

Examples of org.glite.authz.pap.client.ServiceClient


     * @param url the URL, as <code>String</code> of the PAP to contact.
     */
    public PAPClient(String url) {

        ServiceClientFactory serviceClientFactory = ServiceClientFactory.getServiceClientFactory();
        ServiceClient serviceClient = serviceClientFactory.createServiceClient();

        if (!url.endsWith("/")) {
            url += "/";
        }

        this.url = url + serviceClient.getProvisioningServiceName();

        provisioningClient = serviceClient.getProvisioningService(this.url);

        xacmlPolicyQuery = makeStandardPAPQuery();
    }
View Full Code Here

TOP

Related Classes of org.glite.authz.pap.client.ServiceClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.