added Type

This commit is contained in:
lucio.lelii 2020-12-04 19:58:21 +01:00
parent 5eea923c19
commit 81db29fdf9
2 changed files with 20 additions and 20 deletions

View File

@ -1,20 +0,0 @@
package org.gcube.vremanagement.contextmanager.model.types;
import java.util.List;
public class ContextList {
private List<String> contexts;
protected ContextList() {}
public ContextList(List<String> contexts) {
super();
this.contexts = contexts;
}
public List<String> getContexts() {
return contexts;
}
}

View File

@ -0,0 +1,20 @@
package org.gcube.vremanagement.contextmanager.model.types;
import java.util.List;
public class StringList {
private List<String> values;
protected StringList() {}
public StringList(List<String> values) {
super();
this.values = values;
}
public List<String> getValues() {
return values;
}
}