Examples of JsonConfigurationMetadata


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
Copyright © 2018 www.massapi.com. 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.