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

org.hpccsystems.ws.client.wrappers.gen.wssql.ECLExceptionWrapper 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.10-1
Show newest version
package org.hpccsystems.ws.client.wrappers.gen.wssql;

/*******************************************************************************
 * 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: ECLExceptionWrapper
 * Wraps class: org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLException
 * Output package : org.hpccsystems.ws.client.wrappers.gen.wssql
 */
public class ECLExceptionWrapper
{
    protected String local_source;
    protected String local_severity;
    protected int local_code;
    protected String local_message;
    protected String local_fileName;
    protected int local_lineNo;
    protected int local_column;
    protected int local_activity;
    protected String local_scope;
    protected int local_priority;

    public ECLExceptionWrapper() {}

    public ECLExceptionWrapper( org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLException eclexception)
    {
        copy( eclexception );
    }
    public ECLExceptionWrapper( String _source, String _severity, int _code, String _message, String _fileName, int _lineNo, int _column, int _activity, String _scope, int _priority )
    {
        this.local_source = _source;
        this.local_severity = _severity;
        this.local_code = _code;
        this.local_message = _message;
        this.local_fileName = _fileName;
        this.local_lineNo = _lineNo;
        this.local_column = _column;
        this.local_activity = _activity;
        this.local_scope = _scope;
        this.local_priority = _priority;

    }

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

        this.local_source = raw.getSource();
        this.local_severity = raw.getSeverity();
        this.local_code = raw.getCode();
        this.local_message = raw.getMessage();
        this.local_fileName = raw.getFileName();
        this.local_lineNo = raw.getLineNo();
        this.local_column = raw.getColumn();
        this.local_activity = raw.getActivity();
        this.local_scope = raw.getScope();
        this.local_priority = raw.getPriority();

    }

    @Override
    public String toString()
    {
        return "ECLExceptionWrapper [" + "source = " + local_source + ", " + "severity = " + local_severity + ", " + "code = " + local_code + ", " + "message = " + local_message + ", " + "fileName = " + local_fileName + ", " + "lineNo = " + local_lineNo + ", " + "column = " + local_column + ", " + "activity = " + local_activity + ", " + "scope = " + local_scope + ", " + "priority = " + local_priority + "]";
    }
    public org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLException getRaw()
    {
        org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLException raw = new org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLException();
        raw.setSource( local_source);
        raw.setSeverity( local_severity);
        raw.setCode( local_code);
        raw.setMessage( local_message);
        raw.setFileName( local_fileName);
        raw.setLineNo( local_lineNo);
        raw.setColumn( local_column);
        raw.setActivity( local_activity);
        raw.setScope( local_scope);
        raw.setPriority( local_priority);
        return raw;
    }


    public void setSource( String _source )
    {
        this.local_source = _source;
    }
    public String getSource( )
    {
        return this.local_source;
    }
    public void setSeverity( String _severity )
    {
        this.local_severity = _severity;
    }
    public String getSeverity( )
    {
        return this.local_severity;
    }
    public void setCode( int _code )
    {
        this.local_code = _code;
    }
    public int getCode( )
    {
        return this.local_code;
    }
    public void setMessage( String _message )
    {
        this.local_message = _message;
    }
    public String getMessage( )
    {
        return this.local_message;
    }
    public void setFileName( String _fileName )
    {
        this.local_fileName = _fileName;
    }
    public String getFileName( )
    {
        return this.local_fileName;
    }
    public void setLineNo( int _lineNo )
    {
        this.local_lineNo = _lineNo;
    }
    public int getLineNo( )
    {
        return this.local_lineNo;
    }
    public void setColumn( int _column )
    {
        this.local_column = _column;
    }
    public int getColumn( )
    {
        return this.local_column;
    }
    public void setActivity( int _activity )
    {
        this.local_activity = _activity;
    }
    public int getActivity( )
    {
        return this.local_activity;
    }
    public void setScope( String _scope )
    {
        this.local_scope = _scope;
    }
    public String getScope( )
    {
        return this.local_scope;
    }
    public void setPriority( int _priority )
    {
        this.local_priority = _priority;
    }
    public int getPriority( )
    {
        return this.local_priority;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy