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

com.sforce.async.Result Maven / Gradle / Ivy

There is a newer version: 62.0.0
Show newest version
/*
 * Copyright (c) 2017, salesforce.com, inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided
 * that the following conditions are met:
 *
 *    Redistributions of source code must retain the above copyright notice, this list of conditions and the
 *    following disclaimer.
 *
 *    Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
 *    the following disclaimer in the documentation and/or other materials provided with the distribution.
 *
 *    Neither the name of salesforce.com, inc. nor the names of its contributors may be used to endorse or
 *    promote products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

package com.sforce.async;

/**
 * @author mcheenath,vmehra
 * @since 164
 */
public class Result implements com.sforce.ws.bind.XMLizable {

    private static final String NAMESPACE = BulkConnection.NAMESPACE;

    /**
     * element  : errors of type {urn:partner.soap.sforce.com}Error
     * java type: com.sforce.soap.partner.wsc.Error[]
     */
    private static final com.sforce.ws.bind.TypeInfo errors__typeInfo =
            new com.sforce.ws.bind.TypeInfo(NAMESPACE, "errors", NAMESPACE, "Error", 0, -1, true);

    private boolean errors__is_set = false;

    private Error[] errors = new Error[0];

    public Result() {
    }

    public Error[] getErrors() {
        return errors;
    }

    public void setErrors(Error[] errors) {
        this.errors = errors;
        errors__is_set = true;
    }

    /**
     * element  : id of type {urn:partner.soap.sforce.com}ID
     * java type: java.lang.String
     */
    private static final com.sforce.ws.bind.TypeInfo id__typeInfo =
            new com.sforce.ws.bind.TypeInfo(NAMESPACE, "id", NAMESPACE, "ID", 1, 1, true);

    private boolean id__is_set = false;

    private java.lang.String id;

    public java.lang.String getId() {
        return id;
    }

    public void setId(java.lang.String id) {
        this.id = id;
        id__is_set = true;
    }

    /**
     * element  : success of type {http://www.w3.org/2001/XMLSchema}boolean
     * java type: boolean
     */
    private static final com.sforce.ws.bind.TypeInfo success__typeInfo =
            new com.sforce.ws.bind.TypeInfo(NAMESPACE, "success", "http://www.w3.org/2001/XMLSchema", "boolean", 1, 1, true);

    private boolean success__is_set = false;

    private boolean success;

    public boolean getSuccess() {
        return success;
    }

    public boolean isSuccess() {
        return success;
    }


    public void setSuccess(boolean success) {
        this.success = success;
        success__is_set = true;
    }

    /**
     * element  : created of type {http://www.w3.org/2001/XMLSchema}boolean
     * java type: boolean
     */
    private static final com.sforce.ws.bind.TypeInfo created__typeInfo =
            new com.sforce.ws.bind.TypeInfo(NAMESPACE, "created", "http://www.w3.org/2001/XMLSchema", "boolean", 1, 1, true);

    private boolean created__is_set = false;

    private boolean created;

    public boolean getCreated() {
        return created;
    }

    public boolean isCreated() {
        return created;
    }

    public void setCreated(boolean created) {
        this.created = created;
        created__is_set = true;
    }

    /**
     */
    @Override
    public void write(javax.xml.namespace.QName __element,
                      com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper)
            throws java.io.IOException {
        __out.writeStartTag(__element.getNamespaceURI(), __element.getLocalPart());

        writeFields(__out, __typeMapper);
        __out.writeEndTag(__element.getNamespaceURI(), __element.getLocalPart());
    }

    protected void writeFields(com.sforce.ws.parser.XmlOutputStream __out,
                               com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {

        __typeMapper.writeObject(__out, errors__typeInfo, errors, errors__is_set);
        __typeMapper.writeString(__out, id__typeInfo, id, id__is_set);
        __typeMapper.writeBoolean(__out, success__typeInfo, success, success__is_set);
        __typeMapper.writeBoolean(__out, created__typeInfo, created, created__is_set);
    }

    @Override
    public void load(com.sforce.ws.parser.XmlInputStream __in,
                     com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
        __typeMapper.consumeStartTag(__in);
        loadFields(__in, __typeMapper);
        __typeMapper.consumeEndTag(__in);
    }

    protected void loadFields(com.sforce.ws.parser.XmlInputStream __in,
                              com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {

        __in.peekTag();
        if (__typeMapper.isElement(__in, errors__typeInfo)) {
            setErrors((Error[]) __typeMapper.readObject(__in, errors__typeInfo, Error[].class));
        }
        __in.peekTag();
        if (__typeMapper.isElement(__in, id__typeInfo)) {
            setId(__typeMapper.readString(__in, id__typeInfo, String.class));
        }
        __in.peekTag();
        if (__typeMapper.verifyElement(__in, success__typeInfo)) {
            setSuccess(__typeMapper.readBoolean(__in, success__typeInfo, boolean.class));
        }
        __in.peekTag();
        if (__typeMapper.isElement(__in, created__typeInfo)) {
            setCreated(__typeMapper.readBoolean(__in, created__typeInfo, boolean.class));
        }
    }

    @Override
    public String toString() {
        java.lang.StringBuilder sb = new java.lang.StringBuilder();
        sb.append("[SaveResult ");

        sb.append(" errors=");
        sb.append("'").append(com.sforce.ws.util.Verbose.toString(errors)).append("'\n");
        sb.append(" id=");
        sb.append("'").append(com.sforce.ws.util.Verbose.toString(id)).append("'\n");
        sb.append(" success=");
        sb.append("'").append(com.sforce.ws.util.Verbose.toString(success)).append("'\n");
        sb.append(" created=");
        sb.append("'").append(com.sforce.ws.util.Verbose.toString(created)).append("'\n");
        sb.append("]\n");
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy