Compare commits

..

5 Commits

Author SHA1 Message Date
d87e01bac9 fixed version label 2025-04-08 15:02:34 -04:00
b5657a9ec2 v3.0.5 pom 2025-04-08 14:47:35 -04:00
d01dd74af1 Merge branch 'develop' into stable 2025-04-08 14:47:16 -04:00
58aeabec19 added protected APIs for jersey/cxf 2025-04-08 14:47:01 -04:00
dac93ad154 added DecisionTable/DataSource model type 2025-04-08 14:42:11 -04:00
4 changed files with 28 additions and 2 deletions

View File

@@ -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>

View File

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

View File

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

View File

@@ -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) {