Package org.apache.syncope.client.to

Examples of org.apache.syncope.client.to.SchemaTO


     *
     * @param name (e.g.:surname)
     * @return schemaTO
     */
    public SchemaTO readSchema(final AttributableType type, final String name) {
        SchemaTO schema = null;

        try {
            schema = restTemplate.getForObject(baseURL + "schema/" + type.name().toLowerCase() + "/read/" + name
                    + ".json", SchemaTO.class);
        } catch (SyncopeClientCompositeErrorException e) {
View Full Code Here

TOP

Related Classes of org.apache.syncope.client.to.SchemaTO

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.