-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
121 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
/** | ||
* @author Rui Castro | ||
* @author Luis Faria <[email protected]> | ||
* @author Miguel Guimarães <[email protected]> | ||
*/ | ||
public class PluginParameter implements Serializable { | ||
private static final long serialVersionUID = -431821437136556726L; | ||
|
@@ -401,7 +402,12 @@ public enum PluginParameterType { | |
/** | ||
* Interface to users profiles | ||
*/ | ||
USER_PROFILE; | ||
USER_PROFILE, | ||
|
||
/** | ||
* Interface to conversion plugins | ||
*/ | ||
CONVERSION | ||
} | ||
|
||
public static class PluginParameterBuilder { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...da-wui/src/main/java/org/roda/wui/client/ingest/process/model/DisseminationParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.roda.wui.client.ingest.process.model; | ||
|
||
public class DisseminationParameter { | ||
|
||
public DisseminationParameter() {} | ||
} |
21 changes: 21 additions & 0 deletions
21
...a-wui/src/main/java/org/roda/wui/client/ingest/process/model/RepresentationParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.roda.wui.client.ingest.process.model; | ||
|
||
public class RepresentationParameter { | ||
|
||
private String value; | ||
|
||
public RepresentationParameter() { | ||
} | ||
|
||
public RepresentationParameter(String value) { | ||
this.value = value; | ||
} | ||
|
||
public String getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(String value) { | ||
this.value = value; | ||
} | ||
} |