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

org.modelmapper.projection.example1.OrderInfo Maven / Gradle / Ivy

package org.modelmapper.projection.example1;

public class OrderInfo {
  private String customerName;
  private String streetAddress;

  public String getCustomerName() {
    return customerName;
  }

  public void setCustomerName(String customerName) {
    this.customerName = customerName;
  }

  public String getStreetAddress() {
    return streetAddress;
  }

  public void setStreetAddress(String streetAddress) {
    this.streetAddress = streetAddress;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy