Skip to content

Commit 2a06869

Browse files
authored
CLOUDSTACK-10340: Add setter to hypervisorType in VMInstanceVO (#2504)
This adds a missing setter to set hypervisorType in VMInstanceVO. Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
1 parent 6a75423 commit 2a06869

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

engine/schema/src/com/cloud/vm/VMInstanceVO.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,10 @@ public HypervisorType getHypervisorType() {
267267
return hypervisorType;
268268
}
269269

270+
public void setHypervisorType(HypervisorType hypervisorType) {
271+
this.hypervisorType = hypervisorType;
272+
}
273+
270274
@Override
271275
public Date getCreated() {
272276
return created;

0 commit comments

Comments
 (0)