Class VirtualNetworkPool

java.lang.Object
org.opennebula.client.Pool
org.opennebula.client.vnet.VirtualNetworkPool
All Implemented Interfaces:
Iterable<VirtualNetwork>

public class VirtualNetworkPool extends Pool implements Iterable<VirtualNetwork>
This class represents an OpenNebula Virtual Network pool. It also offers static XML-RPC call wrappers.
  • Constructor Details

    • VirtualNetworkPool

      public VirtualNetworkPool(Client client)
      Creates a new Virtual Network pool with the default filter flag value set to Pool.MINE_GROUP (Virtual Networks belonging to the connected user, and the ones in his group)
      Parameters:
      client - XML-RPC Client.
      See Also:
    • VirtualNetworkPool

      public VirtualNetworkPool(Client client, int filter)
      Creates a new Virtual Network pool.
      Parameters:
      client - XML-RPC Client.
      filter - Filter flag to use by default in the method info(). Possible values:
      • Pool.ALL: All Virtual Networks
      • Pool.MINE: Connected user's Virtual Networks
      • Pool.MINE_GROUP: Connected user's Virtual Networks, and the ones in his group
      • Pool.GROUP: User's primary group Virtual Networks
      • >= 0 UID User's Virtual Networks
  • Method Details

    • factory

      public PoolElement factory(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 Virtual Networks in the pool.
      Parameters:
      client - XML-RPC Client.
      filter - Filter flag to use. Possible values:
      • Pool.ALL: All Virtual Networks
      • Pool.MINE: Connected user's Virtual Networks
      • Pool.MINE_GROUP: Connected user's Virtual Networks, and the ones in his group
      • Pool.GROUP: User's primary group Virtual Networks
      • >= 0 UID User's Virtual Networks
      Returns:
      If successful the message contains the string with the information returned by OpenNebula.
    • infoAll

      public static OneResponse infoAll(Client client)
      Retrieves all the Virtual Networks 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 Virtual Networks.
      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 Virtual Networks 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 Virtual Networks in the pool. The Virtual Networks 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 Virtual Networks
      • Pool.MINE: Connected user's Virtual Networks
      • Pool.MINE_GROUP: Connected user's Virtual Networks, and the ones in his group
      • Pool.GROUP: User's primary group Virtual Networks
      • >= 0 UID User's Virtual Networks
      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 Virtual Networks 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:
    • infoAll

      public OneResponse infoAll()
      Loads the xml representation of all the Virtual Networks 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 Virtual Networks.
      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 Virtual Networks 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 Virtual Networks in the pool. The Virtual Networks 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 Virtual Networks
      • Pool.MINE: Connected user's Virtual Networks
      • Pool.MINE_GROUP: Connected user's Virtual Networks, and the ones in his group
      • Pool.GROUP: User's primary group Virtual Networks
      • >= 0 UID User's Virtual Networks
      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 Iterator<VirtualNetwork> iterator()
      Specified by:
      iterator in interface Iterable<VirtualNetwork>
    • getById

      public VirtualNetwork getById(int id)
      Returns the Virtual Network 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 Virtual Network to retrieve
      Returns:
      The Image with the given Id, or null if it was not found.