DomainTypeResource

API

DomainTypeResource.java
interface DomainTypeResource {
  ResponseEntity<Object> domainTypes()
  ResponseEntity<Object> domainType(String domainType)
  ResponseEntity<Object> layout(String domainType)
  ResponseEntity<Object> typeProperty(String domainType, String propertyId)
  ResponseEntity<Object> typeCollection(String domainType, String collectionId)
  ResponseEntity<Object> typeAction(String domainType, String actionId)
  ResponseEntity<Object> typeActionParam(String domainType, String actionId, String paramId)
  ResponseEntity<Object> domainTypeIsSubtypeOf(String domainType, String superType, String argumentsQueryString)
  ResponseEntity<Object> domainTypeIsSupertypeOf(String domainType, String superType, String argumentsQueryString)
}