DomainTypeResource

API

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