1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

F #1377: Fixed bug when compile java oca (#1686)

This commit is contained in:
juanmont 2018-01-26 12:17:17 +01:00 committed by Tino Vázquez
parent 33bbbcf1ab
commit 6e79dba05a
6 changed files with 12 additions and 12 deletions

View File

@ -657,7 +657,7 @@ public class Image extends PoolElement
*/
public OneResponse lock(int level)
{
return rename(client, id, level);
return lock(client, id, level);
}
/**
@ -667,7 +667,7 @@ public class Image extends PoolElement
*/
public OneResponse unlock()
{
return rename(client, id);
return unlock(client, id);
}
// =================================

View File

@ -429,7 +429,7 @@ public class MarketPlaceApp extends PoolElement
*/
public OneResponse lock(int level)
{
return rename(client, id, level);
return lock(client, id, level);
}
/**
@ -439,7 +439,7 @@ public class MarketPlaceApp extends PoolElement
*/
public OneResponse unlock()
{
return rename(client, id);
return unlock(client, id);
}
// =================================

View File

@ -701,7 +701,7 @@ public class Template extends PoolElement
*/
public OneResponse lock(int level)
{
return rename(client, id, level);
return lock(client, id, level);
}
/**
@ -711,7 +711,7 @@ public class Template extends PoolElement
*/
public OneResponse unlock()
{
return rename(client, id);
return unlock(client, id);
}
// =================================

View File

@ -373,7 +373,7 @@ public class VMGroup extends PoolElement{
*/
public OneResponse lock(int level)
{
return rename(client, id, level);
return lock(client, id, level);
}
/**
@ -383,7 +383,7 @@ public class VMGroup extends PoolElement{
*/
public OneResponse unlock()
{
return rename(client, id);
return unlock(client, id);
}
// =================================

View File

@ -714,7 +714,7 @@ public class VirtualNetwork extends PoolElement{
*/
public OneResponse lock(int level)
{
return rename(client, id, level);
return lock(client, id, level);
}
/**
@ -724,7 +724,7 @@ public class VirtualNetwork extends PoolElement{
*/
public OneResponse unlock()
{
return rename(client, id);
return unlock(client, id);
}
// =================================

View File

@ -520,7 +520,7 @@ public class VirtualRouter extends PoolElement
*/
public OneResponse lock(int level)
{
return rename(client, id, level);
return lock(client, id, level);
}
/**
@ -530,7 +530,7 @@ public class VirtualRouter extends PoolElement
*/
public OneResponse unlock()
{
return rename(client, id);
return unlock(client, id);
}
// =================================