All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hpccsystems.ws.client.wrappers.DebugValueWrapper Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 9.6.18-1
Show newest version
package org.hpccsystems.ws.client.wrappers;

import org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_75.DebugValue;

public class DebugValueWrapper
{

    private String name;
    private String value;

    /**
     * Instantiates a new debug value wrapper.
     */
    public DebugValueWrapper() {}

    /**
     * Instantiates a new debug value wrapper.
     *
     * @param name
     *            the name
     * @param value
     *            the value
     */
    public DebugValueWrapper(String name, String value)
    {
        this.name = name;
        this.value = value;
    }

    /**
     * Instantiates a new debug value wrapper.
     *
     * @param raw
     *            the raw
     */
    public DebugValueWrapper(DebugValue raw)
    {
        name = raw.getName();
        value = raw.getValue();
    }

    /**
     * Instantiates a new debug value wrapper.
     *
     * @param raw
     *            the raw
     */
    public DebugValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.DebugValue raw)
    {
        name=raw.getName();
        value=raw.getValue();
    }

    /**
     * Instantiates a new debug value wrapper.
     *
     * @param raw
     *            the raw
     */
    public DebugValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.DebugValue raw)
    {
        name = raw.getName();
        value = raw.getValue();
    }

    /**
     * Instantiates a new debug value wrapper.
     *
     * @param raw
     *            the raw
     */
    public DebugValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.DebugValue raw)
    {
        name = raw.getName();
        value = raw.getValue();
    }

    /**
     * Instantiates a new debug value wrapper.
     *
     * @param raw
     *            the raw
     */
    public DebugValueWrapper(org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_56.DebugValue raw)
    {
        name = raw.getName();
        value = raw.getValue();
    }

    /**
     * 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 75.
     *
     * @return the raw version 1 75
     */
    public org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_75.DebugValue getRawVersion1_75()
    {
        org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_75.DebugValue val = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_75.DebugValue();
        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.DebugValue getRawVersion1_69()
    {
        org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.DebugValue result = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_69.DebugValue();
        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.DebugValue getRawVersion1_62()
    {
        org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.DebugValue result = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_62.DebugValue();
        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.DebugValue getRawVersion1_58()
    {
        org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.DebugValue result = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.v1_58.DebugValue();
        result.setName(name);
        result.setValue(value);
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy