org.deephacks.graphene.Country Maven / Gradle / Ivy
The newest version!
package org.deephacks.graphene;
@Entity
public class Country {
@Id
private String country;
public Country(String country) {
this.country = country;
}
public String getCountry() {
return country;
}
@Override
public String toString() {
return "Country{" +
"country='" + country + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy