You can create a new REST-based resource using BMC Helix Innovation Studio. The REST resource you create can support all the standard HTTP operations (GET, PUT, POST and DELETE).
Create a Java class that implements RestfulResource interface (com.bmc.arsys.rx.services.common.RestfulResource). RestfulResource is a Marker interface. For example:
/** * JAX-RS Resource for handling requests related to Login Content. The class uses jersey specific * implementation of Multi-Part. There is a request for providing portable attachment support in * JAX-RS please refer https://java.net/jira/browse/JAX_RS_SPEC-413 */ @Path("rx/application/logincontent") public classLoginContentResource implementsRestfulResource { … }