Loading src/main/java/com/inteligr8/alfresco/activiti/ApsProtectedRestCxfApi.java 0 → 100644 +12 −0 Original line number Diff line number Diff line package com.inteligr8.alfresco.activiti; /** * This interface appends CXF implementation specific methods to the JAX-RS API * of the APS Protected ReST API. This is due to a lack of multi-part in the * JAX-RS specification. * * @author brian@inteligr8.com */ public interface ApsProtectedRestCxfApi extends ApsProtectedRestApi, ApsPublicRestCxfApi { } src/main/java/com/inteligr8/alfresco/activiti/ApsProtectedRestJerseyApi.java 0 → 100644 +12 −0 Original line number Diff line number Diff line package com.inteligr8.alfresco.activiti; /** * This interface appends Jersey implementation specific methods to the JAX-RS * API of the APS Protected ReST API. This is due to a lack of multi-part in * the JAX-RS specification. * * @author brian@inteligr8.com */ public interface ApsProtectedRestJerseyApi extends ApsProtectedRestApi, ApsPublicRestJerseyApi { } src/main/java/com/inteligr8/alfresco/activiti/api/ModelsApi.java +3 −1 Original line number Diff line number Diff line Loading @@ -29,7 +29,9 @@ public interface ModelsApi { enum ModelType { Process(0), Form(2), App(3); App(3), DecisionTable(4), DataModel(5); private int id; private ModelType(int id) { Loading Loading
src/main/java/com/inteligr8/alfresco/activiti/ApsProtectedRestCxfApi.java 0 → 100644 +12 −0 Original line number Diff line number Diff line package com.inteligr8.alfresco.activiti; /** * This interface appends CXF implementation specific methods to the JAX-RS API * of the APS Protected ReST API. This is due to a lack of multi-part in the * JAX-RS specification. * * @author brian@inteligr8.com */ public interface ApsProtectedRestCxfApi extends ApsProtectedRestApi, ApsPublicRestCxfApi { }
src/main/java/com/inteligr8/alfresco/activiti/ApsProtectedRestJerseyApi.java 0 → 100644 +12 −0 Original line number Diff line number Diff line package com.inteligr8.alfresco.activiti; /** * This interface appends Jersey implementation specific methods to the JAX-RS * API of the APS Protected ReST API. This is due to a lack of multi-part in * the JAX-RS specification. * * @author brian@inteligr8.com */ public interface ApsProtectedRestJerseyApi extends ApsProtectedRestApi, ApsPublicRestJerseyApi { }
src/main/java/com/inteligr8/alfresco/activiti/api/ModelsApi.java +3 −1 Original line number Diff line number Diff line Loading @@ -29,7 +29,9 @@ public interface ModelsApi { enum ModelType { Process(0), Form(2), App(3); App(3), DecisionTable(4), DataModel(5); private int id; private ModelType(int id) { Loading