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

org.hpccsystems.ws.client.wrappers.gen.wssql.GetResultsResponseWrapper Maven / Gradle / Ivy

package org.hpccsystems.ws.client.wrappers.gen.wssql;



/*******************************************************************************
 * 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 org.apache.axis2.databinding.types.UnsignedInt;

/**
 * Generated Axis2 ADB stub class wrapper
 * Class name: GetResultsResponseWrapper
 * Wraps class: org.hpccsystems.ws.client.gen.axis2.wssql.v1_05.GetResultsResponse
 * Output package : org.hpccsystems.ws.client.wrappers.gen.wssql
 * TimeStamp: 2019-08-13T16:31:16.600Z
 */
public class GetResultsResponseWrapper
{
protected ArrayOfEspExceptionWrapper local_exceptions;
protected String local_result;
protected UnsignedInt local_resultWindowStart;
protected UnsignedInt local_resultWindowCount;
protected ECLWorkunitWrapper local_workunit;

	public GetResultsResponseWrapper() {}

	public GetResultsResponseWrapper( org.hpccsystems.ws.client.gen.axis2.wssql.v1_05.GetResultsResponse getresultsresponse)
	{
		copy( getresultsresponse );
	}
	public GetResultsResponseWrapper( ArrayOfEspExceptionWrapper _exceptions, String _result, UnsignedInt _resultWindowStart, UnsignedInt _resultWindowCount, ECLWorkunitWrapper _workunit )
	{
		this.local_exceptions = _exceptions;
		this.local_result = _result;
		this.local_resultWindowStart = _resultWindowStart;
		this.local_resultWindowCount = _resultWindowCount;
		this.local_workunit = _workunit;

	}

	private void copy( org.hpccsystems.ws.client.gen.axis2.wssql.v1_05.GetResultsResponse raw )
	{
		if (raw == null)
			return;

		this.local_exceptions = new ArrayOfEspExceptionWrapper( raw.getExceptions());
		this.local_result = raw.getResult();
		this.local_resultWindowStart = raw.getResultWindowStart();
		this.local_resultWindowCount = raw.getResultWindowCount();
		this.local_workunit = new ECLWorkunitWrapper( raw.getWorkunit());

	}

	@Override
	public String toString()
	{
		return "GetResultsResponseWrapper [" + "exceptions = " + local_exceptions + ", " + "result = " + local_result + ", " + "resultWindowStart = " + local_resultWindowStart + ", " + "resultWindowCount = " + local_resultWindowCount + ", " + "workunit = " + local_workunit + "]";
	}
	public org.hpccsystems.ws.client.gen.axis2.wssql.v1_05.GetResultsResponse getRaw()
	{
		org.hpccsystems.ws.client.gen.axis2.wssql.v1_05.GetResultsResponse raw = new org.hpccsystems.ws.client.gen.axis2.wssql.v1_05.GetResultsResponse();
		raw.setResult( local_result);
		raw.setResultWindowStart( local_resultWindowStart);
		raw.setResultWindowCount( local_resultWindowCount);
		return raw;
	}


	public void setExceptions( ArrayOfEspExceptionWrapper _exceptions )
	{
		this.local_exceptions = _exceptions;
	}
	public ArrayOfEspExceptionWrapper getExceptions( )
	{
		return this.local_exceptions;
	}
	public void setResult( String _result )
	{
		this.local_result = _result;
	}
	public String getResult( )
	{
		return this.local_result;
	}
	public void setResultWindowStart( UnsignedInt _resultWindowStart )
	{
		this.local_resultWindowStart = _resultWindowStart;
	}
	public UnsignedInt getResultWindowStart( )
	{
		return this.local_resultWindowStart;
	}
	public void setResultWindowCount( UnsignedInt _resultWindowCount )
	{
		this.local_resultWindowCount = _resultWindowCount;
	}
	public UnsignedInt getResultWindowCount( )
	{
		return this.local_resultWindowCount;
	}
	public void setWorkunit( ECLWorkunitWrapper _workunit )
	{
		this.local_workunit = _workunit;
	}
	public ECLWorkunitWrapper getWorkunit( )
	{
		return this.local_workunit;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy