vre-modeler/src/org/gcube/vremanagement/vremodeler/resources/GhnRiRelationObject.java

28 lines
347 B
Java

package org.gcube.vremanagement.vremodeler.resources;
public class GhnRiRelationObject {
private String ghn;
private String ri;
public GhnRiRelationObject(String ghn, String ri) {
super();
this.ghn = ghn;
this.ri = ri;
}
public String getGhn() {
return ghn;
}
public String getRunningInstance() {
return ri;
}
}