org.hpccsystems.ws.client.wrappers.GetAttributesWrapper 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;
/*******************************************************************************
* HPCC SYSTEMS software Copyright (C) 2019 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.
*******************************************************************************/
import java.util.List;
import java.util.ArrayList;
import org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.EspStringArray;
/**
* Generated Axis2 ADB stub class wrapper
* Class name: GetAttributesWrapper
* Wraps class: org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.GetAttributes
* Output package : org.hpccsystems.ws.client.wrappers.gen.wsattributes
* TimeStamp: 2019-09-06T14:44:27.941Z
*/
public class GetAttributesWrapper
{
protected String local_moduleName;
protected List local_typeList = new ArrayList();
protected String local_label;
public GetAttributesWrapper() {}
public GetAttributesWrapper( org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.GetAttributes getattributes)
{
copy( getattributes );
}
public GetAttributesWrapper( String _moduleName, List _typeList, String _label )
{
this.local_moduleName = _moduleName;
this.local_typeList = _typeList;
this.local_label = _label;
}
private void copy( org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.GetAttributes raw )
{
if (raw == null)
return;
this.local_moduleName = raw.getModuleName();
if (raw.getTypeList() != null)
{
this.local_typeList = new ArrayList();
for ( int i = 0; i < raw.getTypeList().getItem().length; i++)
{
this.local_typeList.add(new String(raw.getTypeList().getItem()[i]));
}
} this.local_label = raw.getLabel();
}
@Override
public String toString()
{
return "GetAttributesWrapper [" + "moduleName = " + local_moduleName + ", " + "typeList = " + local_typeList + ", " + "label = " + local_label + "]";
}
public org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.GetAttributes getRaw()
{
org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.GetAttributes raw = new org.hpccsystems.ws.client.gen.axis2.wsattributes.v1_21.GetAttributes();
raw.setModuleName( local_moduleName);
if (this.local_typeList!= null)
{
EspStringArray arr = new EspStringArray();
for ( int i = 0; i < this.local_typeList.size(); i++)
{
arr.addItem(this.local_typeList.get(i));
}
raw.setTypeList(arr);
}
raw.setLabel( local_label);
return raw;
}
public void setModuleName( String _moduleName )
{
this.local_moduleName = _moduleName;
}
public String getModuleName( )
{
return this.local_moduleName;
}
public void setTypeList( List _typeList )
{
this.local_typeList = _typeList;
}
public List getTypeList( )
{
return this.local_typeList;
}
public void setLabel( String _label )
{
this.local_label = _label;
}
public String getLabel( )
{
return this.local_label;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy