mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
* Add failing test case for generic querybeans Types with generics arguments have not been processed correctly, they will lose their generics. This is not critical in Java, as the language has to be backwards compatible with Java 1.4, but will still become highlighted as a warning in all common IDEs. In Kotlin however, it's not a warning but a compile error. * Fix problem with generics in scalar type arg This fixes the issue introduced with ScalarType aware querybeans.
106 lines
1.7 KiB
Java
106 lines
1.7 KiB
Java
package org.example.domain;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.Table;
|
|
import javax.validation.constraints.Size;
|
|
|
|
import org.example.domain.otherpackage.GenericType;
|
|
import org.example.domain.otherpackage.GenericTypeArgument;
|
|
|
|
/**
|
|
* Address entity bean.
|
|
*/
|
|
@Entity
|
|
@Table(name = "o_address")
|
|
public class Address extends BaseModel {
|
|
|
|
@Size(max = 100)
|
|
String line1;
|
|
|
|
@Size(max = 100)
|
|
String line2;
|
|
|
|
@Size(max = 100)
|
|
String city;
|
|
|
|
@ManyToOne
|
|
Country country;
|
|
|
|
GenericType<GenericTypeArgument> metadata;
|
|
|
|
/**
|
|
* Create a copy of the address. Used to provide a 'snapshot' of
|
|
* the shippingAddress for a give order.
|
|
*/
|
|
public Address createCopy() {
|
|
Address copy = new Address();
|
|
copy.setLine1(line1);
|
|
copy.setLine2(line2);
|
|
copy.setCity(city);
|
|
copy.setCountry(country);
|
|
return copy;
|
|
}
|
|
|
|
public String toString() {
|
|
return id + " " + line1 + " " + line2 + " " + city + " " + country;
|
|
}
|
|
|
|
/**
|
|
* Return line 1.
|
|
*/
|
|
public String getLine1() {
|
|
return line1;
|
|
}
|
|
|
|
/**
|
|
* Set line 1.
|
|
*/
|
|
public void setLine1(String line1) {
|
|
this.line1 = line1;
|
|
}
|
|
|
|
/**
|
|
* Return line 2.
|
|
*/
|
|
public String getLine2() {
|
|
return line2;
|
|
}
|
|
|
|
/**
|
|
* Set line 2.
|
|
*/
|
|
public void setLine2(String line2) {
|
|
this.line2 = line2;
|
|
}
|
|
|
|
/**
|
|
* Return city.
|
|
*/
|
|
public String getCity() {
|
|
return city;
|
|
}
|
|
|
|
/**
|
|
* Set city.
|
|
*/
|
|
public void setCity(String city) {
|
|
this.city = city;
|
|
}
|
|
|
|
/**
|
|
* Return country.
|
|
*/
|
|
public Country getCountry() {
|
|
return country;
|
|
}
|
|
|
|
/**
|
|
* Set country.
|
|
*/
|
|
public void setCountry(Country country) {
|
|
this.country = country;
|
|
}
|
|
|
|
}
|