enable vClouds domain objects to extend Section

This commit is contained in:
danikov 2012-02-09 23:13:11 +00:00 committed by Adam Lowe
parent d1305f3034
commit 5dd8f60a9f
1 changed files with 5 additions and 1 deletions

View File

@ -55,7 +55,11 @@ public class Section<T extends Section<T>> {
}
}
protected final String info;
protected String info;
protected Section() {
// For Builders and JAXB
}
public Section(@Nullable String info) {
this.info = info;