Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
e9dcb0cd77 | |||
58aeabec19 | |||
dac93ad154 |
8
pom.xml
8
pom.xml
@ -43,9 +43,9 @@
|
|||||||
<maven.compiler.release>11</maven.compiler.release>
|
<maven.compiler.release>11</maven.compiler.release>
|
||||||
<maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel>
|
<maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel>
|
||||||
|
|
||||||
<jersey.version>3.1.8</jersey.version>
|
<jersey.version>3.1.10</jersey.version>
|
||||||
<cxf.version>4.0.2</cxf.version>
|
<cxf.version>4.1.0</cxf.version>
|
||||||
<jackson.version>2.17.2</jackson.version>
|
<jackson.version>2.18.1</jackson.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
@ -61,7 +61,7 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.module</groupId>
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
<artifactId>jackson-module-jakarta-xmlbind-annotations</artifactId>
|
||||||
<version>${jackson.version}</version>
|
<version>${jackson.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user