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

org.hpccsystems.ws.client.wrappers.gen.wsstore.SetRequestWrapper 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.8.2-1
Show newest version
package org.hpccsystems.ws.client.wrappers.gen.wsstore;

/*******************************************************************************
 * HPCC SYSTEMS software Copyright (C) 2021 HPCC Systems.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *******************************************************************************/

/**
 * Generated Axis2 ADB stub class wrapper
 * Class name: SetRequestWrapper
 * Wraps class: org.hpccsystems.ws.client.gen.axis2.wsstore.latest.SetRequest
 * Output package : org.hpccsystems.ws.client.wrappers.gen.wsstore
 */
public class SetRequestWrapper
{
    protected String local_storeName;
    protected String local_namespace;
    protected String local_key;
    protected String local_value;
    protected boolean local_userSpecific;

    public SetRequestWrapper() {}

    public SetRequestWrapper( org.hpccsystems.ws.client.gen.axis2.wsstore.latest.SetRequest setrequest)
    {
        copy( setrequest );
    }
    public SetRequestWrapper( String _storeName, String _namespace, String _key, String _value, boolean _userSpecific )
    {
        this.local_storeName = _storeName;
        this.local_namespace = _namespace;
        this.local_key = _key;
        this.local_value = _value;
        this.local_userSpecific = _userSpecific;

    }

    private void copy( org.hpccsystems.ws.client.gen.axis2.wsstore.latest.SetRequest raw )
    {
        if (raw == null)
            return;

        this.local_storeName = raw.getStoreName();
        this.local_namespace = raw.getNamespace();
        this.local_key = raw.getKey();
        this.local_value = raw.getValue();
        this.local_userSpecific = raw.getUserSpecific();

    }

    @Override
    public String toString()
    {
        return "SetRequestWrapper [" + "storeName = " + local_storeName + ", " + "namespace = " + local_namespace + ", " + "key = " + local_key + ", " + "value = " + local_value + ", " + "userSpecific = " + local_userSpecific + "]";
    }
    public org.hpccsystems.ws.client.gen.axis2.wsstore.latest.SetRequest getRaw()
    {
        org.hpccsystems.ws.client.gen.axis2.wsstore.latest.SetRequest raw = new org.hpccsystems.ws.client.gen.axis2.wsstore.latest.SetRequest();
        raw.setStoreName( local_storeName);
        raw.setNamespace( local_namespace);
        raw.setKey( local_key);
        raw.setValue( local_value);
        raw.setUserSpecific( local_userSpecific);
        return raw;
    }


    public void setStoreName( String _storeName )
    {
        this.local_storeName = _storeName;
    }
    public String getStoreName( )
    {
        return this.local_storeName;
    }
    public void setNamespace( String _namespace )
    {
        this.local_namespace = _namespace;
    }
    public String getNamespace( )
    {
        return this.local_namespace;
    }
    public void setKey( String _key )
    {
        this.local_key = _key;
    }
    public String getKey( )
    {
        return this.local_key;
    }
    public void setValue( String _value )
    {
        this.local_value = _value;
    }
    public String getValue( )
    {
        return this.local_value;
    }
    public void setUserSpecific( boolean _userSpecific )
    {
        this.local_userSpecific = _userSpecific;
    }
    public boolean getUserSpecific( )
    {
        return this.local_userSpecific;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy