OpenNebula
Cloud API

org.opennebula.client.template
Class TemplatePool

java.lang.Object
  extended by org.opennebula.client.Pool
      extended by org.opennebula.client.template.TemplatePool
All Implemented Interfaces:
java.lang.Iterable<Template>

public class TemplatePool
extends Pool
implements java.lang.Iterable<Template>

This class represents an OpenNebula Template pool. It also offers static XML-RPC call wrappers.


Field Summary
 
Fields inherited from class org.opennebula.client.Pool
ALL, client, elementName, infoMethod, MINE, MINE_GROUP, poolElements
 
Constructor Summary
TemplatePool(Client client)
          Creates a new Template pool with the default filter flag value set to Pool.MINE_GROUP (Template belonging to the connected user, and the ones in his group)
TemplatePool(Client client, int filter)
          Creates a new Template pool.
 
Method Summary
 PoolElement factory(org.w3c.dom.Node node)
          The factory method returns a suitable PoolElement object from an XML node.
 Template getById(int id)
          Returns the Template with the given Id from the pool.
 OneResponse info()
          Loads the xml representation of all or part of the Templates in the pool.
static OneResponse info(Client client, int filter)
          Retrieves all or part of the Templates in the pool.
static OneResponse info(Client client, int filter, int startId, int endId)
          Retrieves all or part of the Templates in the pool.
 OneResponse info(int filter, int startId, int endId)
          Retrieves all or part of the Templates in the pool.
 OneResponse infoAll()
          Loads the xml representation of all the Templates in the pool.
static OneResponse infoAll(Client client)
          Retrieves all the Templates in the pool.
 OneResponse infoGroup()
          Loads the xml representation of all the connected user's Templates and the ones in his group.
static OneResponse infoGroup(Client client)
          Retrieves all the connected user's Templates and the ones in his group.
 OneResponse infoMine()
          Loads the xml representation of all the connected user's Templates.
static OneResponse infoMine(Client client)
          Retrieves all the connected user's Templates.
 java.util.Iterator<Template> iterator()
           
 
Methods inherited from class org.opennebula.client.Pool
getLength, info, info, infoAll, infoGroup, infoMine, item, processInfo, xmlrpcInfo
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TemplatePool

public TemplatePool(Client client)
Creates a new Template pool with the default filter flag value set to Pool.MINE_GROUP (Template belonging to the connected user, and the ones in his group)

Parameters:
client - XML-RPC Client.
See Also:
TemplatePool(Client, int)

TemplatePool

public TemplatePool(Client client,
                    int filter)
Creates a new Template pool.

Parameters:
client - XML-RPC Client.
filter - Filter flag to use by default in the method info(). Possible values:
  • Pool.ALL: All Templates
  • Pool.MINE: Connected user's Templates
  • Pool.MINE_GROUP: Connected user's Templates, and the ones in his group
  • >= 0: UID User's Templates
Method Detail

factory

public PoolElement factory(org.w3c.dom.Node node)
Description copied from class: Pool
The factory method returns a suitable PoolElement object from an XML node. Each Pool must implement the corresponding factory method.

Specified by:
factory in class Pool
Parameters:
node - XML Dom node to build the PoolElement from
Returns:
The corresponding PoolElement

info

public static OneResponse info(Client client,
                               int filter)
Retrieves all or part of the Templates in the pool.

Parameters:
client - XML-RPC Client.
filter - Filter flag to use. Possible values:
  • Pool.ALL: All Templates
  • Pool.MINE: Connected user's Templates
  • Pool.MINE_GROUP: Connected user's Templates, and the ones in his group
  • >= 0: UID User's Templates
Returns:
If successful the message contains the string with the information returned by OpenNebula.

infoAll

public static OneResponse infoAll(Client client)
Retrieves all the Templates in the pool.

Parameters:
client - XML-RPC Client.
Returns:
If successful the message contains the string with the information returned by OpenNebula.

infoMine

public static OneResponse infoMine(Client client)
Retrieves all the connected user's Templates.

Parameters:
client - XML-RPC Client.
Returns:
If successful the message contains the string with the information returned by OpenNebula.

infoGroup

public static OneResponse infoGroup(Client client)
Retrieves all the connected user's Templates and the ones in his group.

Parameters:
client - XML-RPC Client.
Returns:
If successful the message contains the string with the information returned by OpenNebula.

info

public static OneResponse info(Client client,
                               int filter,
                               int startId,
                               int endId)
Retrieves all or part of the Templates in the pool. The Templates to retrieve can be also filtered by Id, specifying the first and last Id to include.

Parameters:
client - XML-RPC Client.
filter - Filter flag to use. Possible values:
  • Pool.ALL: All Templates
  • Pool.MINE: Connected user's Templates
  • Pool.MINE_GROUP: Connected user's Templates, and the ones in his group
  • >= 0: UID User's Templates
startId - Lowest Id to retrieve
endId - Biggest Id to retrieve
Returns:
If successful the message contains the string with the information returned by OpenNebula.

info

public OneResponse info()
Loads the xml representation of all or part of the Templates in the pool. The filter used is the one set in the constructor.

Overrides:
info in class Pool
Returns:
If successful the message contains the string with the information returned by OpenNebula.
See Also:
info(Client, int)

infoAll

public OneResponse infoAll()
Loads the xml representation of all the Templates in the pool.

Overrides:
infoAll in class Pool
Returns:
If successful the message contains the string with the information returned by OpenNebula.

infoMine

public OneResponse infoMine()
Loads the xml representation of all the connected user's Templates.

Overrides:
infoMine in class Pool
Returns:
If successful the message contains the string with the information returned by OpenNebula.

infoGroup

public OneResponse infoGroup()
Loads the xml representation of all the connected user's Templates and the ones in his group.

Overrides:
infoGroup in class Pool
Returns:
If successful the message contains the string with the information returned by OpenNebula.

info

public OneResponse info(int filter,
                        int startId,
                        int endId)
Retrieves all or part of the Templates in the pool. The Templates to retrieve can be also filtered by Id, specifying the first and last Id to include.

Overrides:
info in class Pool
Parameters:
filter - Filter flag to use. Possible values:
  • Pool.ALL: All Templates
  • Pool.MINE: Connected user's Templates
  • Pool.MINE_GROUP: Connected user's Templates, and the ones in his group
  • >= 0: UID User's Templates
startId - Lowest Id to retrieve
endId - Biggest Id to retrieve
Returns:
If successful the message contains the string with the information returned by OpenNebula.

iterator

public java.util.Iterator<Template> iterator()
Specified by:
iterator in interface java.lang.Iterable<Template>

getById

public Template getById(int id)
Returns the Template with the given Id from the pool. If it is not found, then returns null. The method info() must be called before.

Overrides:
getById in class Pool
Parameters:
id - of the ACl rule to retrieve
Returns:
The Template with the given Id, or null if it was not found.

OpenNebula
Cloud API

Visit OpenNebula.org
Copyright 2002-2012 © OpenNebula Project Leads (OpenNebula.org).