DomainObjectResource

API

DomainObjectResource.java
interface DomainObjectResource {
  Response persist(String domainType, InputStream object)
  Response object(String domainType, String instanceId)
  Response object(String domainType, String instanceId, InputStream arguments)
  Response deleteMethodNotSupported(String domainType, String instanceId)
  Response postMethodNotAllowed(String domainType, String instanceId)
  Response image(String domainType, String instanceId)
  Response layout(String domainType, String instanceId)
  Response propertyDetails(String domainType, String instanceId, String propertyId)
  Response modifyProperty(String domainType, String instanceId, String propertyId, InputStream arguments)
  Response clearProperty(String domainType, String instanceId, String propertyId)
  Response postPropertyNotAllowed(String domainType, String instanceId, String propertyId)
  Response accessCollection(String domainType, String instanceId, String collectionId)
  Response actionPrompt(String domainType, String instanceId, String actionId)
  Response deleteActionPromptNotAllowed(String domainType, String instanceId, String actionId)
  Response putActionPromptNotAllowed(String domainType, String instanceId, String actionId)
  Response postActionPromptNotAllowed(String domainType, String instanceId, String actionId)
  Response invokeActionQueryOnly(String domainType, String instanceId, String actionId, String xCausewayQueryString)
  Response invokeActionIdempotent(String domainType, String instanceId, String actionId, InputStream arguments)
  Response invokeAction(String domainType, String instanceId, String actionId, InputStream arguments)
  Response deleteInvokeActionNotAllowed(String domainType, String instanceId, String actionId)
}