Package com.lbslocal.cc.objects.v3.route

Source Code of com.lbslocal.cc.objects.v3.route.POIDetails

/**
* POIDetails.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 com.lbslocal.cc.objects.v3.route;

import com.lbslocal.cc.objects.v0.common.Point;

public class POIDetails {
  private java.lang.String clientID;
  private java.lang.String name;
  private java.lang.String addressInfo;
  private java.lang.String source;
  private com.lbslocal.cc.objects.v0.common.Point point;

  public POIDetails() {
    this.clientID = "";
    this.name = "";
    this.addressInfo = "";
    this.source = "";
    this.point = new Point();
  }

  public POIDetails(java.lang.String clientID, java.lang.String name, java.lang.String addressInfo, java.lang.String source,
      com.lbslocal.cc.objects.v0.common.Point point) {
    this.clientID = clientID;
    this.name = name;
    this.addressInfo = addressInfo;
    this.source = source;
    this.point = point;
  }

  /**
   * Gets the clientID value for this POIDetails.
   *
   * @return clientID
   */
  public java.lang.String getClientID() {
    return clientID;
  }

  /**
   * Sets the clientID value for this POIDetails.
   *
   * @param clientID
   */
  public void setClientID(java.lang.String clientID) {
    this.clientID = clientID;
  }

  /**
   * Gets the name value for this POIDetails.
   *
   * @return name
   */
  public java.lang.String getName() {
    return name;
  }

  /**
   * Sets the name value for this POIDetails.
   *
   * @param name
   */
  public void setName(java.lang.String name) {
    this.name = name;
  }

  /**
   * Gets the addressInfo value for this POIDetails.
   *
   * @return addressInfo
   */
  public java.lang.String getAddressInfo() {
    return addressInfo;
  }

  /**
   * Sets the addressInfo value for this POIDetails.
   *
   * @param addressInfo
   */
  public void setAddressInfo(java.lang.String addressInfo) {
    this.addressInfo = addressInfo;
  }

  /**
   * Gets the source value for this POIDetails.
   *
   * @return source
   */
  public java.lang.String getSource() {
    return source;
  }

  /**
   * Sets the source value for this POIDetails.
   *
   * @param source
   */
  public void setSource(java.lang.String source) {
    this.source = source;
  }

  /**
   * Gets the point value for this POIDetails.
   *
   * @return point
   */
  public com.lbslocal.cc.objects.v0.common.Point getPoint() {
    return point;
  }

  /**
   * Sets the point value for this POIDetails.
   *
   * @param point
   */
  public void setPoint(com.lbslocal.cc.objects.v0.common.Point point) {
    this.point = point;
  }

}
TOP

Related Classes of com.lbslocal.cc.objects.v3.route.POIDetails

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.