/* jBilling - The Enterprise Open Source Billing System Copyright (C) 2003-2011 Enterprise jBilling Software Ltd. and Emiliano Conde This file is part of jbilling. jbilling is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. jbilling is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with jbilling. If not, see <http://www.gnu.org/licenses/>. */ package com.sapienter.jbilling.server.provisioning.task.mmsc; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for efsBaseResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="efsBaseResponse"> * <complexContent> * <extension base="{http://mmschandlerfacade.efs.teliasonera.se/}efsBaseObject"> * <sequence> * <element name="statusCode" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="statusMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="transactionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "efsBaseResponse", propOrder = { "statusCode", "statusMessage", "transactionId" }) @XmlSeeAlso({ GetCustomerResponse.class, MmscFacadeHandlerResponse.class }) public class EfsBaseResponse extends EfsBaseObject { protected int statusCode; protected String statusMessage; protected String transactionId; /** * Gets the value of the statusCode property. * */ public int getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * */ public void setStatusCode(int value) { this.statusCode = value; } /** * Gets the value of the statusMessage property. * * @return * possible object is * {@link String } * */ public String getStatusMessage() { return statusMessage; } /** * Sets the value of the statusMessage property. * * @param value * allowed object is * {@link String } * */ public void setStatusMessage(String value) { this.statusMessage = value; } /** * Gets the value of the transactionId property. * * @return * possible object is * {@link String } * */ public String getTransactionId() { return transactionId; } /** * Sets the value of the transactionId property. * * @param value * allowed object is * {@link String } * */ public void setTransactionId(String value) { this.transactionId = value; } }