Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
d87e01bac9 | |||
b5657a9ec2 | |||
d01dd74af1 | |||
58aeabec19 | |||
dac93ad154 |
2
pom.xml
2
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>com.inteligr8.alfresco</groupId>
|
||||
<artifactId>aps-public-rest-api</artifactId>
|
||||
<version>3.0.4</version>
|
||||
<version>3.0.5</version>
|
||||
|
||||
<name>Alfresco Process Services ReST API for Java</name>
|
||||
<description>An APS API library for building REST API clients that support both the CXF and Jersey frameworks</description>
|
||||
|
@@ -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 {
|
||||
Process(0),
|
||||
Form(2),
|
||||
App(3);
|
||||
App(3),
|
||||
DecisionTable(4),
|
||||
DataModel(5);
|
||||
|
||||
private int id;
|
||||
private ModelType(int id) {
|
||||
|
Reference in New Issue
Block a user