mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
23 lines
299 B
Java
23 lines
299 B
Java
package com.avaje.tests.model.ivo;
|
|
|
|
/**
|
|
* Simple example of String based IVO.
|
|
*/
|
|
public class Segment {
|
|
|
|
private final String code;
|
|
|
|
public Segment(String code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public String getCode() {
|
|
return code;
|
|
}
|
|
|
|
public String toString() {
|
|
return code;
|
|
}
|
|
|
|
}
|