Package org.springframework.hateoas.alps

Examples of org.springframework.hateoas.alps.Descriptor


  public Alps convert(RootResourceInformation resourceInformation) {

    Class<?> type = resourceInformation.getDomainType();
    List<Descriptor> descriptors = new ArrayList<Descriptor>();

    Descriptor representationDescriptor = buildRepresentationDescriptor(type);

    descriptors.add(representationDescriptor);

    for (HttpMethod method : resourceInformation.getSupportedMethods(ResourceType.COLLECTION)) {
View Full Code Here

TOP

Related Classes of org.springframework.hateoas.alps.Descriptor

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.