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

org.modelmapper.gettingstarted.Customer Maven / Gradle / Ivy

package org.modelmapper.gettingstarted;

public class Customer {
  private Name name;

  public Customer(Name name) {
    this.name = name;
  }

  public Name getName() {
    return name;
  }

  public void setName(Name name) {
    this.name = name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy