Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
Creating a custom REST resource
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 { … }