Code Search for Developers
 
 
  

GetFlightTableResponse.java from iTicket at Krugle


Show GetFlightTableResponse.java syntax highlighted

/**
 * GetFlightTableResponse.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter.
 */

package iTicket_pkg;

public class GetFlightTableResponse  implements java.io.Serializable {
    private iTicket_pkg.FlightInfoArray[] flighttable;

    public GetFlightTableResponse() {
    }

    public GetFlightTableResponse(
           iTicket_pkg.FlightInfoArray[] flighttable) {
           this.flighttable = flighttable;
    }


    /**
     * Gets the flighttable value for this GetFlightTableResponse.
     * 
     * @return flighttable
     */
    public iTicket_pkg.FlightInfoArray[] getFlighttable() {
        return flighttable;
    }


    /**
     * Sets the flighttable value for this GetFlightTableResponse.
     * 
     * @param flighttable
     */
    public void setFlighttable(iTicket_pkg.FlightInfoArray[] flighttable) {
        this.flighttable = flighttable;
    }

    public iTicket_pkg.FlightInfoArray getFlighttable(int i) {
        return this.flighttable[i];
    }

    public void setFlighttable(int i, iTicket_pkg.FlightInfoArray _value) {
        this.flighttable[i] = _value;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof GetFlightTableResponse)) return false;
        GetFlightTableResponse other = (GetFlightTableResponse) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.flighttable==null && other.getFlighttable()==null) || 
             (this.flighttable!=null &&
              java.util.Arrays.equals(this.flighttable, other.getFlighttable())));
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getFlighttable() != null) {
            for (int i=0;
                 i<java.lang.reflect.Array.getLength(getFlighttable());
                 i++) {
                java.lang.Object obj = java.lang.reflect.Array.get(getFlighttable(), i);
                if (obj != null &&
                    !obj.getClass().isArray()) {
                    _hashCode += obj.hashCode();
                }
            }
        }
        __hashCodeCalc = false;
        return _hashCode;
    }

    // Type metadata
    private static org.apache.axis.description.TypeDesc typeDesc =
        new org.apache.axis.description.TypeDesc(GetFlightTableResponse.class, true);

    static {
        typeDesc.setXmlType(new javax.xml.namespace.QName("urn:iTicket", "getFlightTableResponse"));
        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
        elemField.setFieldName("flighttable");
        elemField.setXmlName(new javax.xml.namespace.QName("", "flighttable"));
        elemField.setXmlType(new javax.xml.namespace.QName("urn:iTicket", "FlightInfoArray"));
        elemField.setNillable(true);
        elemField.setMaxOccursUnbounded(true);
        typeDesc.addFieldDesc(elemField);
    }

    /**
     * Return type metadata object
     */
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
        return typeDesc;
    }

    /**
     * Get Custom Serializer
     */
    public static org.apache.axis.encoding.Serializer getSerializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanSerializer(
            _javaType, _xmlType, typeDesc);
    }

    /**
     * Get Custom Deserializer
     */
    public static org.apache.axis.encoding.Deserializer getDeserializer(
           java.lang.String mechType, 
           java.lang.Class _javaType,  
           javax.xml.namespace.QName _xmlType) {
        return 
          new  org.apache.axis.encoding.ser.BeanDeserializer(
            _javaType, _xmlType, typeDesc);
    }

}




See more files for this project here

iTicket

iTicket is an application for booking specific flights. On a quick-check-in terminal the passenger could easily withdraw the ticket.

Project homepage: http://sourceforge.net/projects/iticket
Programming language(s): Java,JSP,XML
License: lgpl21

  Authentication.java
  AuthenticationStub.java
  FlightInfo.java
  FlightInfoArray.java
  FlightTable.java
  FlightTableStub.java
  GetFlightTableRequest.java
  GetFlightTableResponse.java
  ITicket.java
  ITicketLocator.java
  LoginRequest.java