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

com.logicommerce.sdk.models.order.implementations.OrderDeliveryPhysicalLocationImpl Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.logicommerce.sdk.models.order.implementations;

import com.logicommerce.sdk.models.Location;
import com.logicommerce.sdk.models.order.OrderDeliveryPhysicalLocation;

/**
 * 

OrderDeliveryPhysicalLocationImpl class.

* * @author Logicommerce * @since 1.0.16 */ public class OrderDeliveryPhysicalLocationImpl implements OrderDeliveryPhysicalLocation { private int physicalLocationId; private String physicalLocationPId; private String name; private String address; private String city; private String state; private String postalCode; protected Location location; /** *

Getter for the field location.

* * @return a {@link com.logicommerce.sdk.models.Location} object */ public Location getLocation() { return location; } /** *

Getter for the field physicalLocationId.

* * @return a int */ public int getPhysicalLocationId() { return physicalLocationId; } /** *

Getter for the field physicalLocationPId.

* * @return a {@link java.lang.String} object */ public String getPhysicalLocationPId() { return physicalLocationPId; } /** *

Getter for the field name.

* * @return a {@link java.lang.String} object */ public String getName() { return name; } /** *

Getter for the field address.

* * @return a {@link java.lang.String} object */ public String getAddress() { return address; } /** *

Getter for the field city.

* * @return a {@link java.lang.String} object */ public String getCity() { return city; } /** *

Getter for the field state.

* * @return a {@link java.lang.String} object */ public String getState() { return state; } /** *

Getter for the field postalCode.

* * @return a {@link java.lang.String} object */ public String getPostalCode() { return postalCode; } /** *

Setter for the field location.

* * @param location a {@link com.logicommerce.sdk.models.Location} object */ public void setLocation(Location location) { this.location = location; } /** *

Setter for the field physicalLocationId.

* * @param physicalLocationId a int */ public void setPhysicalLocationId(int physicalLocationId) { this.physicalLocationId = physicalLocationId; } /** *

Setter for the field physicalLocationPId.

* * @param physicalLocationPId a {@link java.lang.String} object */ public void setPhysicalLocationPId(String physicalLocationPId) { this.physicalLocationPId = physicalLocationPId; } /** *

Setter for the field name.

* * @param name a {@link java.lang.String} object */ public void setName(String name) { this.name = name; } /** *

Setter for the field address.

* * @param address a {@link java.lang.String} object */ public void setAddress(String address) { this.address = address; } /** *

Setter for the field city.

* * @param city a {@link java.lang.String} object */ public void setCity(String city) { this.city = city; } /** *

Setter for the field state.

* * @param state a {@link java.lang.String} object */ public void setState(String state) { this.state = state; } /** *

Setter for the field postalCode.

* * @param postalCode a {@link java.lang.String} object */ public void setPostalCode(String postalCode) { this.postalCode = postalCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy