Package com.jayway.jaxrs.hateoas

Examples of com.jayway.jaxrs.hateoas.HateoasVerbosity


        }
    }

    public static HateoasVerbosity createVerbosity(Map<String, Object> props, String... defaults) {
        String verbosityConfig = getProperty(props, PROPERTY_HATEOAS_VERBOSITY, "MAXIMUM", defaults);
        HateoasVerbosity verbosity = HateoasVerbosity.findByName(verbosityConfig);
        if (verbosity != null) {
            return verbosity;
        }
        return HateoasVerbosity.valueOf(verbosityConfig);
    }
View Full Code Here

TOP

Related Classes of com.jayway.jaxrs.hateoas.HateoasVerbosity

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.