Commit d01dd74a authored by Brian Long's avatar Brian Long
Browse files

Merge branch 'develop' into stable

parents d4572534 58aeabec
Loading
Loading
Loading
Loading
+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 {

}
+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 {

}
+3 −1
Original line number Diff line number Diff line
@@ -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) {