![JAR search and dependency download from the Maven repository](/logo.png)
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 - 2025 Weber Informatics LLC | Privacy Policy