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

org.hpccsystems.ws.client.wrappers.gen.wssmc.SetJobPriorityWrapper 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.0-1
Show newest version
package org.hpccsystems.ws.client.wrappers.gen.wssmc;



/*******************************************************************************
 * 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.
 *******************************************************************************/

/**
 * Generated Axis2 ADB stub class wrapper
 * Class name: SetJobPriorityWrapper
 * Wraps class: org.hpccsystems.ws.client.gen.axis2.wssmc.v1_23.SetJobPriority
 * Output package : org.hpccsystems.ws.client.wrappers.gen.wssmc
 * TimeStamp: 2021-03-30T22:27:29.106Z
 */
public class SetJobPriorityWrapper
{
	protected String local_queueName;
	protected String local_wuid;
	protected String local_priority;
	protected ArrayOfSMCJobWrapper local_sMCJobs;

	public SetJobPriorityWrapper() {}

	public SetJobPriorityWrapper( org.hpccsystems.ws.client.gen.axis2.wssmc.v1_23.SetJobPriority setjobpriority)
	{
		copy( setjobpriority );
	}
	public SetJobPriorityWrapper( String _queueName, String _wuid, String _priority, ArrayOfSMCJobWrapper _sMCJobs )
	{
		this.local_queueName = _queueName;
		this.local_wuid = _wuid;
		this.local_priority = _priority;
		this.local_sMCJobs = _sMCJobs;

	}

	private void copy( org.hpccsystems.ws.client.gen.axis2.wssmc.v1_23.SetJobPriority raw )
	{
		if (raw == null)
			return;

		this.local_queueName = raw.getQueueName();
		this.local_wuid = raw.getWuid();
		this.local_priority = raw.getPriority();
		if (raw.getSMCJobs() != null)
			this.local_sMCJobs = new ArrayOfSMCJobWrapper( raw.getSMCJobs());

	}

	@Override
	public String toString()
	{
		return "SetJobPriorityWrapper [" + "queueName = " + local_queueName + ", " + "wuid = " + local_wuid + ", " + "priority = " + local_priority + ", " + "sMCJobs = " + local_sMCJobs + "]";
	}
	public org.hpccsystems.ws.client.gen.axis2.wssmc.v1_23.SetJobPriority getRaw()
	{
		org.hpccsystems.ws.client.gen.axis2.wssmc.v1_23.SetJobPriority raw = new org.hpccsystems.ws.client.gen.axis2.wssmc.v1_23.SetJobPriority();
		raw.setQueueName( local_queueName);
		raw.setWuid( local_wuid);
		raw.setPriority( local_priority);
		return raw;
	}


	public void setQueueName( String _queueName )
	{
		this.local_queueName = _queueName;
	}
	public String getQueueName( )
	{
		return this.local_queueName;
	}
	public void setWuid( String _wuid )
	{
		this.local_wuid = _wuid;
	}
	public String getWuid( )
	{
		return this.local_wuid;
	}
	public void setPriority( String _priority )
	{
		this.local_priority = _priority;
	}
	public String getPriority( )
	{
		return this.local_priority;
	}
	public void setSMCJobs( ArrayOfSMCJobWrapper _sMCJobs )
	{
		this.local_sMCJobs = _sMCJobs;
	}
	public ArrayOfSMCJobWrapper getSMCJobs( )
	{
		return this.local_sMCJobs;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy