org.hpccsystems.ws.client.wrappers.ApplicationValueWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsclient Show documentation
Show all versions of wsclient Show documentation
This project allows a user to interact with ESP services in a controlled manner. The API calls available under org.hpccsystems.ws.client.platform allow for a user to target ESP's across multiple environments running a range of hpccsystems-platform versions. There is no guarantee that if a user utilizes org.hpccsystems.ws.client.gen generated stub code from wsdl, that the calls will be backwards compatible with older hpccsystems-platform versions.
package org.hpccsystems.ws.client.wrappers;
import org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_81.ApplicationValue;
public class ApplicationValueWrapper
{
private String application;
private String name;
private String value;
/**
* Instantiates a new application value wrapper.
*/
public ApplicationValueWrapper()
{
}
/**
* Instantiates a new application value wrapper.
*
* @param app
* the app
* @param name
* the name
* @param value
* the value
*/
public ApplicationValueWrapper(String app, String name, String value)
{
this.application = app;
this.name = name;
this.value = value;
}
/**
* Instantiates a new application value wrapper.
*
* @param raw
* the raw
*/
public ApplicationValueWrapper(ApplicationValue raw)
{
application = raw.getApplication();
name = raw.getName();
value = raw.getValue();
}
/**
* Instantiates a new application value wrapper.
*
* @param raw
* the raw
*/
public ApplicationValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.ApplicationValue raw)
{
application = raw.getApplication();
name = raw.getName();
value = raw.getValue();
}
/**
* Instantiates a new application value wrapper.
*
* @param raw
* the raw
*/
public ApplicationValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.ApplicationValue raw)
{
application = raw.getApplication();
name = raw.getName();
value = raw.getValue();
}
/**
* Instantiates a new application value wrapper.
*
* @param raw
* the raw
*/
public ApplicationValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.ApplicationValue raw)
{
application = raw.getApplication();
name = raw.getName();
value = raw.getValue();
}
/**
* Instantiates a new application value wrapper.
*
* @param raw
* the raw
*/
public ApplicationValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_56.ApplicationValue raw)
{
application = raw.getApplication();
name = raw.getName();
value = raw.getValue();
}
/**
* Gets the application.
*
* @return the application
*/
public String getApplication()
{
return application;
}
/**
* Sets the application.
*
* @param application
* the new application
*/
public void setApplication(String application)
{
this.application = application;
}
/**
* Gets the name.
*
* @return the name
*/
public String getName()
{
return name;
}
/**
* Sets the name.
*
* @param name
* the new name
*/
public void setName(String name)
{
this.name = name;
}
/**
* Gets the value.
*
* @return the value
*/
public String getValue()
{
return value;
}
/**
* Sets the value.
*
* @param value
* the new value
*/
public void setValue(String value)
{
this.value = value;
}
/**
* Gets the raw version 1 81.
*
* @return the raw version 1 81
*/
public org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_81.ApplicationValue getRawLatestVersion()
{
org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_81.ApplicationValue val = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_81.ApplicationValue();
val.setApplication(this.getApplication());
val.setName(this.getName());
val.setValue(this.getValue());
return val;
}
/**
* Gets the raw version 1 69.
*
* @return the raw version 1 69
*/
public org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.ApplicationValue getRawVersion1_69()
{
org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.ApplicationValue result = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.ApplicationValue();
result.setApplication(application);
result.setName(name);
result.setValue(value);
return result;
}
/**
* Gets the raw version 1 62.
*
* @return the raw version 1 62
*/
public org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.ApplicationValue getRawVersion1_62()
{
org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.ApplicationValue result = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.ApplicationValue();
result.setApplication(application);
result.setName(name);
result.setValue(value);
return result;
}
/**
* Gets the raw version 1 58.
*
* @return the raw version 1 58
*/
public org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.ApplicationValue getRawVersion1_58()
{
org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.ApplicationValue result = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.ApplicationValue();
result.setApplication(application);
result.setName(name);
result.setValue(value);
return result;
}
}