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

org.modelmapper.flattening.example1.Order Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package org.modelmapper.flattening.example1;

public class Order {
  private Customer customer;
  private Address billingAddress;
  private Address shippingAddress;

  public Order(Customer customer, Address billingAddress, Address shippingAddress) {
    this.customer = customer;
    this.billingAddress = billingAddress;
    this.shippingAddress = shippingAddress;
  }

  public Customer getCustomer() {
    return customer;
  }

  public void setCustomer(Customer customer) {
    this.customer = customer;
  }

  public Address getShippingAddress() {
    return shippingAddress;
  }

  public void setShippingAddress(Address shippingAddress) {
    this.shippingAddress = shippingAddress;
  }

  public Address getBillingAddress() {
    return billingAddress;
  }

  public void setBillingAddress(Address billingAddress) {
    this.billingAddress = billingAddress;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy