Package org.lightadmin.core.web.json

Examples of org.lightadmin.core.web.json.JsonConfigurationMetadata


        this.domainTypeToJsonMetadataConverter = domainTypeToJsonMetadataConverter;
    }

    @RequestMapping(value = BASE_MAPPING + "/metadata", method = GET)
    public HttpEntity<JsonConfigurationMetadata> schema(RootResourceInformation resourceInformation) {
        JsonConfigurationMetadata jsonConfigurationMetadata = domainTypeToJsonMetadataConverter.convert(resourceInformation.getPersistentEntity());

        return new ResponseEntity<JsonConfigurationMetadata>(jsonConfigurationMetadata, OK);
    }
View Full Code Here

TOP

Related Classes of org.lightadmin.core.web.json.JsonConfigurationMetadata

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.