1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-27 14:03:40 +03:00

feature #3848: Update Host.allocate in OCA JAVA

This commit is contained in:
Ruben S. Montero 2016-04-07 16:14:48 +02:00
parent 50eb397baa
commit 79cc43c909

View File

@ -77,9 +77,6 @@ public class Host extends PoolElement{
* @param vmm The name of the virtual machine manager mad name * @param vmm The name of the virtual machine manager mad name
* (vmm_mad_name), this values are taken from the oned.conf with the * (vmm_mad_name), this values are taken from the oned.conf with the
* tag name VM_MAD (name) * tag name VM_MAD (name)
* @param vnm The name of the virtual network manager mad name
* (vnm_mad_name), this values are taken from the oned.conf with the
* tag name VN_MAD (name)
* @param clusterId The cluster ID. If it is -1, this host won't be * @param clusterId The cluster ID. If it is -1, this host won't be
* added to any cluster. * added to any cluster.
* *
@ -90,10 +87,9 @@ public class Host extends PoolElement{
String hostname, String hostname,
String im, String im,
String vmm, String vmm,
String vnm,
int clusterId) int clusterId)
{ {
return client.call(ALLOCATE, hostname, im, vmm, vnm, clusterId); return client.call(ALLOCATE, hostname, im, vmm, clusterId);
} }
/** /**