Merge branch 'develop' into stable
This commit is contained in:
@@ -0,0 +1,12 @@
|
|||||||
|
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 {
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,12 @@
|
|||||||
|
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 {
|
||||||
|
|
||||||
|
}
|
@@ -29,7 +29,9 @@ public interface ModelsApi {
|
|||||||
enum ModelType {
|
enum ModelType {
|
||||||
Process(0),
|
Process(0),
|
||||||
Form(2),
|
Form(2),
|
||||||
App(3);
|
App(3),
|
||||||
|
DecisionTable(4),
|
||||||
|
DataModel(5);
|
||||||
|
|
||||||
private int id;
|
private int id;
|
||||||
private ModelType(int id) {
|
private ModelType(int id) {
|
||||||
|
Reference in New Issue
Block a user