Skip to content

Commit

Permalink
F #2427: Added extra template argument to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmont committed Oct 10, 2018
1 parent afb14ff commit 0ec3f6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/oca/java/src/org/opennebula/client/vm/VirtualMachine.java
Original file line number Diff line number Diff line change
Expand Up @@ -645,9 +645,9 @@ public OneResponse info()
* default, set it to -1
* @return If an error occurs the error message contains the reason.
*/
public OneResponse deploy(int hostId, boolean enforce, int dsId)
public OneResponse deploy(int hostId, boolean enforce, int dsId, String extra_template)
{
return client.call(DEPLOY, id, hostId, enforce, dsId);
return client.call(DEPLOY, id, hostId, enforce, dsId, extra_template);
}

/**
Expand All @@ -659,7 +659,7 @@ public OneResponse deploy(int hostId, boolean enforce, int dsId)
*/
public OneResponse deploy(int hostId)
{
return deploy(hostId, false, -1);
return deploy(hostId, false, -1, "");
}

/**
Expand Down

0 comments on commit 0ec3f6b

Please sign in to comment.