Package org.opennebula.client
Class Client
- java.lang.Object
-
- org.opennebula.client.Client
-
public class Client extends java.lang.Object
This class represents the connection with the core and handles the xml-rpc calls.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
Client.ExtendedTypeFactoryImpl
This class extends the TypeFactoryImpl for supporting i8 type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OneResponse
call(java.lang.String action, java.lang.Object... args)
Performs an XML-RPC call.OneResponse
get_version()
Calls OpenNebula and retrieves oned version
-
-
-
Constructor Detail
-
Client
public Client() throws ClientConfigurationException
Creates a new xml-rpc client with default options: the auth. file will be assumed to be at $ONE_AUTH, and the endpoint will be set to $ONE_XMLRPC.
It is the equivalent of Client(null, null).- Throws:
ClientConfigurationException
- if the default configuration options are invalid.
-
Client
public Client(java.lang.String secret, java.lang.String endpoint) throws ClientConfigurationException
Creates a new xml-rpc client with specified options.- Parameters:
secret
- A string containing the ONE user:password tuple. Can be nullendpoint
- Where the rpc server is listening, must be something like "http://localhost:2633/RPC2". Can be null- Throws:
ClientConfigurationException
- if the configuration options are invalid
-
-
Method Detail
-
call
public OneResponse call(java.lang.String action, java.lang.Object... args)
Performs an XML-RPC call.- Parameters:
action
- ONE actionargs
- ONE arguments- Returns:
- The server's xml-rpc response encapsulated
-
get_version
public OneResponse get_version()
Calls OpenNebula and retrieves oned version- Returns:
- The server's xml-rpc response encapsulated
-
-