add missing builder inherited methods

This commit is contained in:
danikov 2012-02-23 10:46:29 +00:00
parent 52717c3135
commit 81dfd02935
1 changed files with 71 additions and 0 deletions

View File

@ -70,6 +70,77 @@ public class CloneVAppParams
return cloneVAppParams;
}
/**
* @see ParamsType#getDescription()
*/
public Builder description(String description) {
super.description(description);
return this;
}
/**
* @see ParamsType#getName()
*/
public Builder name(String name) {
super.name(name);
return this;
}
/**
* @see VAppCreationParamsType#getVAppParent()
*/
public Builder vAppParent(Reference vAppParent) {
super.vAppParent(vAppParent);
return this;
}
/**
* @see VAppCreationParamsType#getInstantiationParams()
*/
public Builder instantiationParams(InstantiationParams instantiationParams) {
super.instantiationParams(instantiationParams);
return this;
}
/**
* @see VAppCreationParamsType#getDeploy()
*/
public Builder deploy(Boolean deploy) {
super.deploy(deploy);
return this;
}
/**
* @see VAppCreationParamsType#getPowerOn()
*/
public Builder powerOn(Boolean powerOn) {
super.powerOn(powerOn);
return this;
}
/**
* @see InstantiateVAppParamsType#getSource()
*/
public Builder source(Reference source) {
super.source(source);
return this;
}
/**
* @see InstantiateVAppParamsType#getIsSourceDelete()
*/
public Builder isSourceDelete(Boolean isSourceDelete) {
super.isSourceDelete(isSourceDelete);
return this;
}
/**
* @see InstantiateVAppParamsType#getLinkedClone()
*/
public Builder linkedClone(Boolean linkedClone) {
super.linkedClone(linkedClone);
return this;
}
@Override
public Builder fromInstantiateVAppParamsType(InstantiateVAppParamsType<CloneVAppParams> in) {