
Elive::Entity - Base class for Elive Entities

This is the base class for Elluminate Live! Command Toolkit entity specific classes.
returns a list of all entity instance classes
Elive::Entity->connect('https://myServer.com/test', some_user => 'some_pass');
my $connection = Elive::Entity->connection;
Connects to an Elluminate server instance. Dies if the connection could not be established. If, for example, the SOAP connection or user login failed.
The login user must either be an Elluminate Live! system administrator account, or a user that has been configured to access the Command Toolkit via web services.
This is a utility method for quoting literal arguments to list filter expressions:
my $users = Elive::Entity::User->list(
filter => "surname=".Elive::Entity::User->quote("O'Reilly"),
);
