
org.apache.airavata.Domain 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({
"Description",
"WWW",
"ContactID",
"LocationID"
})
public class Domain {
/**
* A description of the Domain
*
*/
@JsonProperty("Description")
private String description;
/**
* URLs of web pages with more information about the Domain
*
*/
@JsonProperty("WWW")
private List wWW = new ArrayList();
/**
* IDs of Contacts for this Domain
*
*/
@JsonProperty("ContactID")
private List contactID = new ArrayList();
/**
* The ID of the primary Location for this Domain
*
*/
@JsonProperty("LocationID")
private String locationID;
private Map additionalProperties = new HashMap();
/**
* A description of the Domain
*
*/
@JsonProperty("Description")
public String getDescription() {
return description;
}
/**
* A description of the Domain
*
*/
@JsonProperty("Description")
public void setDescription(String description) {
this.description = description;
}
/**
* URLs of web pages with more information about the Domain
*
*/
@JsonProperty("WWW")
public List getWWW() {
return wWW;
}
/**
* URLs of web pages with more information about the Domain
*
*/
@JsonProperty("WWW")
public void setWWW(List wWW) {
this.wWW = wWW;
}
/**
* IDs of Contacts for this Domain
*
*/
@JsonProperty("ContactID")
public List getContactID() {
return contactID;
}
/**
* IDs of Contacts for this Domain
*
*/
@JsonProperty("ContactID")
public void setContactID(List contactID) {
this.contactID = contactID;
}
/**
* The ID of the primary Location for this Domain
*
*/
@JsonProperty("LocationID")
public String getLocationID() {
return locationID;
}
/**
* The ID of the primary Location for this Domain
*
*/
@JsonProperty("LocationID")
public void setLocationID(String locationID) {
this.locationID = locationID;
}
@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