mirror of https://github.com/apache/jclouds.git
enable vClouds domain objects to extend Section
This commit is contained in:
parent
d1305f3034
commit
5dd8f60a9f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue