Skip to content

Commit

Permalink
Merge pull request #90 from TAMULib/159-compress-file-format-zip
Browse files Browse the repository at this point in the history
[Issue 159] Add zip compress file format
  • Loading branch information
wwelling authored Jan 21, 2022
2 parents 9d64da5 + d0bef31 commit 4dca804
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.folio</groupId>
<artifactId>workflow-parent</artifactId>
<version>1.1.0</version>
<version>1.1.1-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package org.folio.rest.workflow.model;

public enum CompressFileFormat {
BZIP2, GZIP
BZIP2, GZIP, ZIP
}
4 changes: 2 additions & 2 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.folio</groupId>
<artifactId>workflow-parent</artifactId>
<version>1.1.0</version>
<version>1.1.1-SNAPSHOT</version>
</parent>

<packaging>jar</packaging>
Expand Down Expand Up @@ -130,7 +130,7 @@
<dependency>
<groupId>org.folio</groupId>
<artifactId>workflow-components</artifactId>
<version>1.1.0</version>
<version>1.1.1-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/compressfiletask.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/eventsubprocess.json
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/exclusivegateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/inclusivegateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/movetolastgateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/movetonode.json
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/parallelgateway.json
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/subprocess.json
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down
2 changes: 1 addition & 1 deletion service/ramls/workflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@
},
"format" : {
"type" : "string",
"enum" : [ "BZIP2", "GZIP" ]
"enum" : [ "BZIP2", "GZIP", "ZIP" ]
},
"container" : {
"type" : "string",
Expand Down

0 comments on commit 4dca804

Please sign in to comment.