
org.apache.airavata.Resource_ Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of airavata-gfac-hpc-monitor Show documentation
Show all versions of airavata-gfac-hpc-monitor Show documentation
The Grid related monitoring implementation
The newest version!
package org.apache.airavata;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"ManagerID",
"ShareID",
"ActivityID"
})
public class Resource_ {
/**
* The ID of the Manager for this Resource
*
*/
@JsonProperty("ManagerID")
private String managerID;
/**
* The ID(s) of the Shares this Resource is part of
*
*/
@JsonProperty("ShareID")
private List shareID = new ArrayList();
/**
* The ID(s) of Activities consuming from this Share
*
*/
@JsonProperty("ActivityID")
private List activityID = new ArrayList();
private Map additionalProperties = new HashMap();
/**
* The ID of the Manager for this Resource
*
*/
@JsonProperty("ManagerID")
public String getManagerID() {
return managerID;
}
/**
* The ID of the Manager for this Resource
*
*/
@JsonProperty("ManagerID")
public void setManagerID(String managerID) {
this.managerID = managerID;
}
/**
* The ID(s) of the Shares this Resource is part of
*
*/
@JsonProperty("ShareID")
public List getShareID() {
return shareID;
}
/**
* The ID(s) of the Shares this Resource is part of
*
*/
@JsonProperty("ShareID")
public void setShareID(List shareID) {
this.shareID = shareID;
}
/**
* The ID(s) of Activities consuming from this Share
*
*/
@JsonProperty("ActivityID")
public List getActivityID() {
return activityID;
}
/**
* The ID(s) of Activities consuming from this Share
*
*/
@JsonProperty("ActivityID")
public void setActivityID(List activityID) {
this.activityID = activityID;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
@Override
public boolean equals(Object other) {
return EqualsBuilder.reflectionEquals(this, other);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy