
org.apache.airavata.ApplicationHandle 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.HashMap;
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({
"Type",
"Value",
"ApplicationEnvironmentID"
})
public class ApplicationHandle {
/**
* The type of method used to set up an ApplicationEnvironment - ApplicationHandle_t (open enumeration)
*
*/
@JsonProperty("Type")
private String type;
/**
* How to set up the ApplicationEnvironment in the context of the Type
*
*/
@JsonProperty("Value")
private String value;
/**
* The ID of the ApplicationEnvironment this ApplicationHandle refers to
*
*/
@JsonProperty("ApplicationEnvironmentID")
private String applicationEnvironmentID;
private Map additionalProperties = new HashMap();
/**
* The type of method used to set up an ApplicationEnvironment - ApplicationHandle_t (open enumeration)
*
*/
@JsonProperty("Type")
public String getType() {
return type;
}
/**
* The type of method used to set up an ApplicationEnvironment - ApplicationHandle_t (open enumeration)
*
*/
@JsonProperty("Type")
public void setType(String type) {
this.type = type;
}
/**
* How to set up the ApplicationEnvironment in the context of the Type
*
*/
@JsonProperty("Value")
public String getValue() {
return value;
}
/**
* How to set up the ApplicationEnvironment in the context of the Type
*
*/
@JsonProperty("Value")
public void setValue(String value) {
this.value = value;
}
/**
* The ID of the ApplicationEnvironment this ApplicationHandle refers to
*
*/
@JsonProperty("ApplicationEnvironmentID")
public String getApplicationEnvironmentID() {
return applicationEnvironmentID;
}
/**
* The ID of the ApplicationEnvironment this ApplicationHandle refers to
*
*/
@JsonProperty("ApplicationEnvironmentID")
public void setApplicationEnvironmentID(String applicationEnvironmentID) {
this.applicationEnvironmentID = applicationEnvironmentID;
}
@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