Package com.atlassian.crowd.integration.soap

Examples of com.atlassian.crowd.integration.soap.SOAPAttribute


        Properties props = UtilProperties.getProperties("crowd.properties");
        return (String) props.get("crowd.attribute.map." + name);
    }

    private SOAPAttribute makeAttribute(String name, String value) {
        SOAPAttribute attr = new SOAPAttribute();
        attr.setName(getCrowdKey(name));
        attr.setValues(new String[] {value});

        removeAttributeByName(attr.getName());
        attributes.add(attr);
        return attr;
    }
View Full Code Here

TOP

Related Classes of com.atlassian.crowd.integration.soap.SOAPAttribute

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.