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

org.hpccsystems.ws.client.wrappers.gen.wsworkunits.WUCreateZAPInfoWrapper 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.wsworkunits;



/*******************************************************************************
 * 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: WUCreateZAPInfoWrapper
 * Wraps class: org.hpccsystems.ws.client.gen.axis2.wsworkunits.latest.WUCreateZAPInfo
 * Output package : org.hpccsystems.ws.client.wrappers.gen.wsworkunits
 * TimeStamp: 2022-07-22T20:33:16.896Z
 */
public class WUCreateZAPInfoWrapper
{
    protected String local_wuid;
    protected String local_eSPIPAddress;
    protected String local_thorIPAddress;
    protected String local_buildVersion;
    protected String local_problemDescription;
    protected String local_whatChanged;
    protected String local_whereSlow;
    protected String local_zAPFileName;
    protected String local_includeThorSlaveLog;
    protected String local_zAPPassword;
    protected boolean local_sendEmail;
    protected boolean local_attachZAPReportToEmail;
    protected String local_emailFrom;
    protected String local_emailSubject;
    protected String local_emailBody;

    public WUCreateZAPInfoWrapper() {}

    public WUCreateZAPInfoWrapper( org.hpccsystems.ws.client.gen.axis2.wsworkunits.latest.WUCreateZAPInfo wucreatezapinfo)
    {
        copy( wucreatezapinfo );
    }
    public WUCreateZAPInfoWrapper( String _wuid, String _eSPIPAddress, String _thorIPAddress, String _buildVersion, String _problemDescription, String _whatChanged, String _whereSlow, String _zAPFileName, String _includeThorSlaveLog, String _zAPPassword, boolean _sendEmail, boolean _attachZAPReportToEmail, String _emailFrom, String _emailSubject, String _emailBody )
    {
        this.local_wuid = _wuid;
        this.local_eSPIPAddress = _eSPIPAddress;
        this.local_thorIPAddress = _thorIPAddress;
        this.local_buildVersion = _buildVersion;
        this.local_problemDescription = _problemDescription;
        this.local_whatChanged = _whatChanged;
        this.local_whereSlow = _whereSlow;
        this.local_zAPFileName = _zAPFileName;
        this.local_includeThorSlaveLog = _includeThorSlaveLog;
        this.local_zAPPassword = _zAPPassword;
        this.local_sendEmail = _sendEmail;
        this.local_attachZAPReportToEmail = _attachZAPReportToEmail;
        this.local_emailFrom = _emailFrom;
        this.local_emailSubject = _emailSubject;
        this.local_emailBody = _emailBody;

    }

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

        this.local_wuid = raw.getWuid();
        this.local_eSPIPAddress = raw.getESPIPAddress();
        this.local_thorIPAddress = raw.getThorIPAddress();
        this.local_buildVersion = raw.getBuildVersion();
        this.local_problemDescription = raw.getProblemDescription();
        this.local_whatChanged = raw.getWhatChanged();
        this.local_whereSlow = raw.getWhereSlow();
        this.local_zAPFileName = raw.getZAPFileName();
        this.local_includeThorSlaveLog = raw.getIncludeThorSlaveLog();
        this.local_zAPPassword = raw.getZAPPassword();
        this.local_sendEmail = raw.getSendEmail();
        this.local_attachZAPReportToEmail = raw.getAttachZAPReportToEmail();
        this.local_emailFrom = raw.getEmailFrom();
        this.local_emailSubject = raw.getEmailSubject();
        this.local_emailBody = raw.getEmailBody();

    }

    @Override
    public String toString()
    {
        return "WUCreateZAPInfoWrapper [" + "wuid = " + local_wuid + ", " + "eSPIPAddress = " + local_eSPIPAddress + ", " + "thorIPAddress = " + local_thorIPAddress + ", " + "buildVersion = " + local_buildVersion + ", " + "problemDescription = " + local_problemDescription + ", " + "whatChanged = " + local_whatChanged + ", " + "whereSlow = " + local_whereSlow + ", " + "zAPFileName = " + local_zAPFileName + ", " + "includeThorSlaveLog = " + local_includeThorSlaveLog + ", " + "zAPPassword = " + local_zAPPassword + ", " + "sendEmail = " + local_sendEmail + ", " + "attachZAPReportToEmail = " + local_attachZAPReportToEmail + ", " + "emailFrom = " + local_emailFrom + ", " + "emailSubject = " + local_emailSubject + ", " + "emailBody = " + local_emailBody + "]";
    }
    public org.hpccsystems.ws.client.gen.axis2.wsworkunits.latest.WUCreateZAPInfo getRaw()
    {
        org.hpccsystems.ws.client.gen.axis2.wsworkunits.latest.WUCreateZAPInfo raw = new org.hpccsystems.ws.client.gen.axis2.wsworkunits.latest.WUCreateZAPInfo();
        raw.setWuid( local_wuid);
        raw.setESPIPAddress( local_eSPIPAddress);
        raw.setThorIPAddress( local_thorIPAddress);
        raw.setBuildVersion( local_buildVersion);
        raw.setProblemDescription( local_problemDescription);
        raw.setWhatChanged( local_whatChanged);
        raw.setWhereSlow( local_whereSlow);
        raw.setZAPFileName( local_zAPFileName);
        raw.setIncludeThorSlaveLog( local_includeThorSlaveLog);
        raw.setZAPPassword( local_zAPPassword);
        raw.setSendEmail( local_sendEmail);
        raw.setAttachZAPReportToEmail( local_attachZAPReportToEmail);
        raw.setEmailFrom( local_emailFrom);
        raw.setEmailSubject( local_emailSubject);
        raw.setEmailBody( local_emailBody);
        return raw;
    }


    public void setWuid( String _wuid )
    {
        this.local_wuid = _wuid;
    }
    public String getWuid( )
    {
        return this.local_wuid;
    }
    public void setESPIPAddress( String _eSPIPAddress )
    {
        this.local_eSPIPAddress = _eSPIPAddress;
    }
    public String getESPIPAddress( )
    {
        return this.local_eSPIPAddress;
    }
    public void setThorIPAddress( String _thorIPAddress )
    {
        this.local_thorIPAddress = _thorIPAddress;
    }
    public String getThorIPAddress( )
    {
        return this.local_thorIPAddress;
    }
    public void setBuildVersion( String _buildVersion )
    {
        this.local_buildVersion = _buildVersion;
    }
    public String getBuildVersion( )
    {
        return this.local_buildVersion;
    }
    public void setProblemDescription( String _problemDescription )
    {
        this.local_problemDescription = _problemDescription;
    }
    public String getProblemDescription( )
    {
        return this.local_problemDescription;
    }
    public void setWhatChanged( String _whatChanged )
    {
        this.local_whatChanged = _whatChanged;
    }
    public String getWhatChanged( )
    {
        return this.local_whatChanged;
    }
    public void setWhereSlow( String _whereSlow )
    {
        this.local_whereSlow = _whereSlow;
    }
    public String getWhereSlow( )
    {
        return this.local_whereSlow;
    }
    public void setZAPFileName( String _zAPFileName )
    {
        this.local_zAPFileName = _zAPFileName;
    }
    public String getZAPFileName( )
    {
        return this.local_zAPFileName;
    }
    public void setIncludeThorSlaveLog( String _includeThorSlaveLog )
    {
        this.local_includeThorSlaveLog = _includeThorSlaveLog;
    }
    public String getIncludeThorSlaveLog( )
    {
        return this.local_includeThorSlaveLog;
    }
    public void setZAPPassword( String _zAPPassword )
    {
        this.local_zAPPassword = _zAPPassword;
    }
    public String getZAPPassword( )
    {
        return this.local_zAPPassword;
    }
    public void setSendEmail( boolean _sendEmail )
    {
        this.local_sendEmail = _sendEmail;
    }
    public boolean getSendEmail( )
    {
        return this.local_sendEmail;
    }
    public void setAttachZAPReportToEmail( boolean _attachZAPReportToEmail )
    {
        this.local_attachZAPReportToEmail = _attachZAPReportToEmail;
    }
    public boolean getAttachZAPReportToEmail( )
    {
        return this.local_attachZAPReportToEmail;
    }
    public void setEmailFrom( String _emailFrom )
    {
        this.local_emailFrom = _emailFrom;
    }
    public String getEmailFrom( )
    {
        return this.local_emailFrom;
    }
    public void setEmailSubject( String _emailSubject )
    {
        this.local_emailSubject = _emailSubject;
    }
    public String getEmailSubject( )
    {
        return this.local_emailSubject;
    }
    public void setEmailBody( String _emailBody )
    {
        this.local_emailBody = _emailBody;
    }
    public String getEmailBody( )
    {
        return this.local_emailBody;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy