aslcore/src/main/java/org/gcube/common/core/scope/GCUBEScope.java

21 lines
258 B
Java

package org.gcube.common.core.scope;
public class GCUBEScope {
private String scope;
public GCUBEScope() {
scope = null;
}
public void setScope(String scope){
this.scope = scope;
}
public String getScope() {
return this.scope;
}
}