Skip to content

Commit

Permalink
JNG-5248 Add export behaviour (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcsakany authored Jan 25, 2024
1 parent a1b50a4 commit 25b66d8
Show file tree
Hide file tree
Showing 11 changed files with 110 additions and 1 deletion.
13 changes: 13 additions & 0 deletions judo-tatami-asm-validation/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,18 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
13 changes: 13 additions & 0 deletions judo-tatami-asm2expression/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,18 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
8 changes: 8 additions & 0 deletions judo-tatami-asm2rdbms/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
Expand Down
13 changes: 13 additions & 0 deletions judo-tatami-expression-asm-validation/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,18 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
13 changes: 13 additions & 0 deletions judo-tatami-expression-psm-validation/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,18 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
13 changes: 13 additions & 0 deletions judo-tatami-psm-validation/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,18 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
13 changes: 13 additions & 0 deletions judo-tatami-psm2asm/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,18 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ rule CreateStatefulAnnotationOnOperationWithBehaviour
stateful.value = "false";
case JUDOPSM!TransferOperationBehaviourType#LIST:
stateful.value = "false";
case JUDOPSM!TransferOperationBehaviourType#EXPORT:
stateful.value = "false";
case JUDOPSM!TransferOperationBehaviourType#GET_RANGE:
stateful.value = "false";
case JUDOPSM!TransferOperationBehaviourType#GET_TEMPLATE:
Expand Down Expand Up @@ -377,6 +379,7 @@ rule AddBehaviourAnnotation
case JUDOPSM!TransferOperationBehaviourType#GET_PRINCIPAL: typeEntry.value = "getPrincipal";
case JUDOPSM!TransferOperationBehaviourType#GET_METADATA: typeEntry.value = "getMetadata";
case JUDOPSM!TransferOperationBehaviourType#GET_UPLOAD_TOKEN: typeEntry.value = "getUploadToken";
case JUDOPSM!TransferOperationBehaviourType#EXPORT: typeEntry.value = "export";
}
t.details.add(typeEntry);

Expand Down
13 changes: 13 additions & 0 deletions judo-tatami-psm2measure/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,18 @@
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
7 changes: 7 additions & 0 deletions judo-tatami-rdbms2liquibase/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<attributes>
<attribute name="test" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src/main/epsilon"/>
Expand All @@ -41,5 +42,11 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<judo-meta-rdbms-version>1.0.2.20231107_041230_4167c814_develop</judo-meta-rdbms-version>
<judo-meta-psm-version>1.3.0.20240123_155324_29ade13f_develop</judo-meta-psm-version>
<judo-meta-jql-version>1.0.4.20231107_041307_10280029_develop</judo-meta-jql-version>
<judo-meta-asm-version>1.1.4.20231107_041242_3043885c_develop</judo-meta-asm-version>
<judo-meta-asm-version>1.1.4.20240123_195302_b5351bc4_feature_JNG_5250_create_excel_export_service</judo-meta-asm-version>
<judo-meta-expression-version>1.0.5.20231107_042129_0d5eab73_develop</judo-meta-expression-version>
<judo-meta-expression-psm-version>1.0.5.20240124_041213_af0f1b40_develop</judo-meta-expression-psm-version>
<judo-meta-expression-asm-version>1.0.5.20231107_042449_3447ad51_develop</judo-meta-expression-asm-version>
Expand Down

0 comments on commit 25b66d8

Please sign in to comment.