A B C D E F G I K L M O P R S T U V W

A

accept(FieldVisitor) - Method in class org.omus.data.DataField
Accepts a visitor.
accept(FieldVisitor) - Method in class org.omus.data.DateField
 
accept(FieldVisitor) - Method in class org.omus.data.StringField
 
accept(FieldVisitor) - Method in class org.omus.data.LongField
 
accept(FieldVisitor) - Method in class org.omus.data.DataTable
 
accept(FieldVisitor) - Method in class org.omus.data.BooleanField
 
accept(FieldVisitor) - Method in class org.omus.data.DataRow
 
accept(FieldVisitor) - Method in class org.omus.data.DataList
 
accept(FieldVisitor) - Method in class org.omus.data.DoubleField
 
accept(FieldVisitor) - Method in class org.omus.data.IntField
 
accept(FieldVisitor) - Method in class org.omus.data.CounterField
 
add(DataField) - Method in class org.omus.data.DataList
Appends the specified DataField to the end of this list.
add(DbTransactionPart) - Method in class org.omus.db.DbTransaction
Adds a DbWriter or DbReader object to this transaction.
add(int) - Method in class org.omus.data.CounterField
Adds the specified value to the int value of this CounterField.
add(int, DataField) - Method in class org.omus.data.DataList
Inserts the specified DataField at the specified position in this list.
addAll(DataList) - Method in class org.omus.data.DataList
Appends all the DataFields of the specified DataList to the end of this list.
addAll(int, DataList) - Method in class org.omus.data.DataList
Inserts all the DataFields of the specified DataList at the specified position in this list.
addAllRows(DataTable) - Method in class org.omus.data.DataTable
Adds all rows of the specified table to this table.
addColumn(String, Class) - Method in class org.omus.data.TableDefinition
Adds a new column to this table definition.
addCommand(Command) - Method in class org.omus.core.Group
Adds the specified command to the queue of this group for later execution.
addListener(FieldListener) - Method in class org.omus.data.DataField
Adds a listener to this DataField that gets notified when the value of this object was modified.
addRow(DataRow) - Method in class org.omus.data.DataTable
Adds a single row to this table.
AuthenticationData - class org.omus.core.AuthenticationData.
Contains authentication data of a user.

B

BooleanField - class org.omus.data.BooleanField.
The class corresponding to the boolean datatype in ActionScript.
BooleanField(String, boolean) - Constructor for class org.omus.data.BooleanField
Creates a new BooleanField with the specified name and value.

C

cancel(Command) - Method in class org.omus.core.TaskManager
Cancels regular execution of the specified Command.
clone() - Method in class org.omus.data.DataField
Returns a clone of this DataField
clone() - Method in class org.omus.data.DataTable
Returns a deep clone of the table.
clone() - Method in class org.omus.data.Message
Returns a clone of this message containing a deep copy of its attachment.
clone() - Method in class org.omus.data.DataRow
Returns a deep copy of this DataRow.
clone() - Method in class org.omus.data.DataList
Returns a deep copy of this DataList.
clone() - Method in class org.omus.data.TableDefinition
Returns a clone of this table definition.
close() - Method in class org.omus.core.Group
Closes the group so that no other users can join.
Command - interface org.omus.core.Command.
An interface for commands that will be passed to one of the methods in TaskManager, to addCommand in Group or to setUndeliveredCommand in Message.
compare(DataField, DataField) - Method in interface org.omus.data.DataList.Comparator
Compares its two arguments for order.
compare(DataRow, DataRow) - Method in interface org.omus.data.DataTable.Comparator
Compares its two arguments for order.
contains(String) - Method in class org.omus.core.PropertySet
Returns true if this PropertySet object contains a property with the specified name
contains(String) - Method in class org.omus.data.DataRow
Returns true if this DataRow contains a DataField with the specified name.
CounterField - class org.omus.data.CounterField.
A special class for synchronizing int values.
CounterField(String, int) - Constructor for class org.omus.data.CounterField
Creates a new CounterField with the specified name and initial value.

D

DataField - class org.omus.data.DataField.
The abstract superclass of all DataFields.
DataList - class org.omus.data.DataList.
The class corresponding to the Array object in ActionScript.
DataList.Comparator - interface org.omus.data.DataList.Comparator.
DataList.Comparators can be passed to the sort method of DataList to allow precise control over the sort order.
DataList(String) - Constructor for class org.omus.data.DataList
Creates a new DataList with the specified name.
DataList(String, DataList) - Constructor for class org.omus.data.DataList
Creates a new DataList with the specified name and the same DataFields as the specified DataList.
DataRow - class org.omus.data.DataRow.
The class corresponding to the generic Object in ActionScript.
DataRow(String) - Constructor for class org.omus.data.DataRow
Creates a new DataRow with the specified name.
DataRow(String, DataRow) - Constructor for class org.omus.data.DataRow
Creates a new DataRow with the specified name and the same DataFields as the specified DataRow.
DataTable - class org.omus.data.DataTable.
The class corresponding to org.omus.Table in the Client API.
DataTable.Comparator - interface org.omus.data.DataTable.Comparator.
DataTable.Comparators can be passed to the sort method of DataTable to allow precise control over the sort order.
DataTable(String, DataTable) - Constructor for class org.omus.data.DataTable
Creates a new DataTable with the specified name and the same rows as the specified table.
DataTable(String, TableDefinition) - Constructor for class org.omus.data.DataTable
Creates a new DataTable with the specified name and table definition.
DateField - class org.omus.data.DateField.
The class corresponding to Date objects in ActionScript.
DateField(String, Date) - Constructor for class org.omus.data.DateField
Creates a new DateField with the specified name and value.
DbException - exception org.omus.db.DbException.
Thrown when an error occurs during execution of a transaction.
DbException(String) - Constructor for class org.omus.db.DbException
Creates a new DbException with the specified error code.
DbReader - class org.omus.db.DbReader.
Represents a SELECT statement to be executed on the server.
DbReader(String) - Constructor for class org.omus.db.DbReader
Creates a new DbReader object.
DbReader(String, String) - Constructor for class org.omus.db.DbReader
Creates a new DbReader object.
DbResult - class org.omus.db.DbResult.
Represents the result of a transaction.
DbTransaction - class org.omus.db.DbTransaction.
Represents a transaction; contains one or more DbWriter or DbReader objects to execute custom SQL statements.
DbTransaction() - Constructor for class org.omus.db.DbTransaction
Creates a new DbTransaction object.
DbTransactionPart - class org.omus.db.DbTransactionPart.
Abstract superclass of DbWriter and DbReader.
DbWriter - class org.omus.db.DbWriter.
Represents a DELETE, UPDATE or INSERT statement to be executed on the server.
DbWriter(String) - Constructor for class org.omus.db.DbWriter
Creates a new DbWriter object.
DbWriter(String, String) - Constructor for class org.omus.db.DbWriter
Creates a new DbWriter object.
debug(String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code if the LogManager is configured to process messages of level DEBUG or higher.
debug(String, Exception) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and the stackTrace of the specified Exception if the LogManager is configured to process messages of level DEBUG or higher.
debug(String, Exception, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code, info string and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level DEBUG or higher.
debug(String, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and info string if the LogManager is configured to process messages of level DEBUG or higher.
debugEnabled() - Method in class org.omus.core.LogManager
Returns true if the LogManager is configured to process log entries of level DEBUG or higher.
decode(String, String) - Method in interface org.omus.ext.PasswordDecoder
Invoked when a user will be logged in, the specified password was encoded by the client; this method must return the decoded password using the specified key which is the same that was used by the client to encode the password.
DoubleField - class org.omus.data.DoubleField.
The class corresponding to the number datatype in ActionScript.
DoubleField(String, double) - Constructor for class org.omus.data.DoubleField
Creates a new DoubleField with the specified name and value.

E

equals(Object) - Method in class org.omus.data.TableDefinition
Returns true if the specified object is a table definition with the same sequence of columns.
error(String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code if the LogManager is configured to process messages of level ERROR.
error(String, Exception) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level ERROR.
error(String, Exception, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code, info string and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level ERROR.
error(String, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and info string if the LogManager is configured to process messages of level ERROR.
errorEnabled() - Method in class org.omus.core.LogManager
Returns true if the LogManager is configured to process log entries of level ERROR or higher.
execute() - Method in interface org.omus.core.Command
Executes the command.
execute() - Method in class org.omus.db.DbTransaction
Executes this transaction and returns the result.
executeDaily(Command) - Method in class org.omus.core.TaskManager
Executes the specified Command every day at the time specified in the <statistics>-node in config.xml.
executeMonthly(Command, int) - Method in class org.omus.core.TaskManager
Executes the specified Command each month on the specified day at the time specified in the <statistics>-node in config.xml.
executeNow(Command) - Method in class org.omus.core.TaskManager
Delegates the execution of the specified Command to one of the worker threads in the Oregano Thread pool.
executeWeekly(Command, int) - Method in class org.omus.core.TaskManager
Executes the specified Command once a week on the specified day at the time specified in the <statistics>-node in config.xml.

F

fieldChange(DataField) - Method in interface org.omus.data.FieldListener
Invoked when the value of the specified DataField was modified.
FieldListener - interface org.omus.data.FieldListener.
A listener that gets notified when the value of a DataField changes.
FieldVisitor - interface org.omus.data.FieldVisitor.
A visitor that can be used to extend the functionality of all DataFields without modifying their API.
finishGroupCreation(Group) - Method in interface org.omus.ext.GroupExtension
Invoked after the group has been created.
finishLogin(User) - Method in interface org.omus.ext.LoginExtension
Invoked after the user has been logged in.
finishRegister(User) - Method in interface org.omus.ext.LoginExtension
Invoked after the user has been registered.

G

generateKey() - Method in interface org.omus.ext.KeyGenerator
Invoked before a client will be requested to send the username and password; this method must return a key that will be passed to the encoding method in the client and to the decoding method on the server.
get() - Method in class org.omus.data.CounterField
Returns the current value of this CounterField.
get(int) - Method in class org.omus.data.DataList
Returns the element at the specified position in this list.
get(String) - Method in class org.omus.data.DataRow
Returns the DataField with the specified name or null if no such DataField exists.
getAffectedRows(String) - Method in class org.omus.db.DbResult
Returns the number of affected rows of the statement with the specified resultID.
getAllUsers() - Method in class org.omus.core.Group
Returns an Iterator over all the User instances of this group.
getASClass() - Method in class org.omus.data.DataRow
Returns the registered name of an ActionScript class or null if none has been set.
getAttachment() - Method in class org.omus.data.Message
Returns the attachment of this message.
getBoolean() - Method in class org.omus.data.BooleanField
Returns the value of this BooleanField object as a boolean primitive.
getColumnCount() - Method in class org.omus.data.TableDefinition
Returns the number of columns in this table definition.
getColumnName(int) - Method in class org.omus.data.TableDefinition
Returns the name of the column at the specified index position.
getColumnNames() - Method in class org.omus.data.TableDefinition
Returns an array of all column names in the order they were added to this TableDefinition.
getColumnType(int) - Method in class org.omus.data.TableDefinition
Returns the type of the column at the specified index position.
getConfigID() - Method in class org.omus.core.Group
Returns the configID of the group.
getConfigID() - Method in class org.omus.core.GroupCreationData
Returns the configID of the group.
getDate() - Method in class org.omus.data.DateField
Returns the value of this DateField.
getDefinition() - Method in class org.omus.data.DataTable
Returns the TableDefinition object used in this table.
getDouble() - Method in class org.omus.data.DoubleField
Returns the value of this DoubleField as a double.
getEmail() - Method in class org.omus.core.User
Returns the email address of the user.
getEmail() - Method in class org.omus.core.RegistrationData
Returns the email address of the user.
getErrorCode() - Method in class org.omus.core.GroupCreationData
Returns the error code or null if none was specified yet.
getErrorCode() - Method in class org.omus.core.AuthenticationData
Returns the error code or null if none was specified yet.
getErrorCode() - Method in class org.omus.core.PropertyUpdate
Returns the error code of this instance or null if none was specified yet.
getField(String) - Method in class org.omus.db.DbResult
Returns the value of a single field.
getInt() - Method in class org.omus.data.IntField
Returns the value of this IntField as an int.
getLogManager() - Static method in class org.omus.core.Services
Returns the LogManager.
getLong() - Method in class org.omus.data.LongField
Returns the value of this LongField as a long.
getMessage(String) - Method in class org.omus.db.DbResult
Returns a message with the specified subject and the content of this DbResult object as an attachment.
getMessagingManager() - Static method in class org.omus.core.Services
Returns the MessagingManager.
getName() - Method in class org.omus.core.Group
Returns the name of the group.
getName() - Method in class org.omus.core.GroupCreationData
Returns the name of the group.
getName() - Method in class org.omus.core.User
Returns the name of the user.
getName() - Method in class org.omus.data.DataField
Returns the name of this DataField.
getOwner() - Method in class org.omus.core.PropertySet
Returns the owner of this PropertySet object.
getParent() - Method in class org.omus.core.PropertyUpdate
Returns the parent object of this PropertyUpdate.
getPassword() - Method in class org.omus.core.AuthenticationData
Returns the password of the user.
getPassword() - Method in class org.omus.core.User
Returns the password of the user.
getPermissions() - Method in class org.omus.core.User
Returns the permissions of the user, a number between 0 and 10.
getPrimaryKey() - Method in class org.omus.core.PropertySet
Returns the primary key for this PropertySet object corresponding to the usrID and grpID fields in the userprops and groupprops tables in the database.
getProperties() - Method in class org.omus.core.Group
Returns the PropertySet object associated with this group.
getProperties() - Method in class org.omus.core.User
Returns the PropertySet object associated with this user.
getRow(int) - Method in class org.omus.data.DataTable
Returns the row at the specified position.
getSender() - Method in class org.omus.data.Message
Returns the name of the sender.
getString() - Method in class org.omus.data.StringField
Returns the value of this StringField.
getSubject() - Method in class org.omus.data.Message
Returns the subject of this message.
getTable(String) - Method in class org.omus.db.DbResult
Returns a table object read from the database.
getTaskManager() - Static method in class org.omus.core.Services
Returns the TaskManager.
getType(String) - Method in class org.omus.core.PropertySet
Returns the type of the property with the specified name.
getUndeliveredCommand() - Method in class org.omus.data.Message
Returns the command that gets executed if the message can not be delivered to the recipient or null if none has been specified yet.
getUser(String) - Method in class org.omus.core.Group
Returns the User object identified by the specified user name.
getUserCount() - Method in class org.omus.core.Group
Returns the number of users who are currently member of this group.
getUserLimit() - Method in class org.omus.core.Group
Returns the maximum number of users permitted for this group.
getUsername() - Method in class org.omus.core.AuthenticationData
Returns the name of the user.
getValue(String) - Method in class org.omus.core.PropertySet
Returns the value of the property with the specified name or null if the property was not loaded yet.
Group - class org.omus.core.Group.
Represents a group of users.
GroupCreationData - class org.omus.core.GroupCreationData.
Contains information about a group that is going to be created.
GroupExtension - interface org.omus.ext.GroupExtension.
The main interface of the org.omus.ext package, used to build custom groups (or "rooms").
groupRemoved() - Method in interface org.omus.ext.GroupExtension
Invoked after the group has been removed.

I

info(String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code if the LogManager is configured to process messages of level INFO or higher.
info(String, Exception) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level INFO or higher.
info(String, Exception, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code, info string and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level INFO or higher.
info(String, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and info string if the LogManager is configured to process messages of level INFO or higher.
infoEnabled() - Method in class org.omus.core.LogManager
Returns true if the LogManager is configured to process log entries of level INFO or higher.
IntField - class org.omus.data.IntField.
A class for properties or table columns configured as an int, corresponding to the number datatype in ActionScript.
IntField(String, int) - Constructor for class org.omus.data.IntField
Creates a new IntField with the specified name and value.
isClosed() - Method in class org.omus.core.Group
Returns true if the group is closed so that no other users can join.
isFull() - Method in class org.omus.core.Group
Returns true if the maximum number of users has been reached.
isLoaded(String) - Method in class org.omus.core.PropertySet
Returns true if the value of the property with the specified name has been loaded from the database.
isModified(String) - Method in class org.omus.core.PropertySet
Returns true if the property with the specified name was modified since the last synchronization.
iterator() - Method in class org.omus.data.DataTable
Returns an iterator over the rows of this table.
iterator() - Method in class org.omus.data.DataRow
Returns an iterator over the DataFields in this DataRow.
iterator() - Method in class org.omus.data.DataList
Returns an iterator over the elements in this list.

K

KeyGenerator - interface org.omus.ext.KeyGenerator.
A key generated by a class that implements this interface can be used to encode passwords on the client.

L

load(String[]) - Method in class org.omus.core.PropertySet
Loads all values of the properties with the specified names into the client.
loadAll() - Method in class org.omus.core.PropertySet
Loads the values of all properties that are not loaded automatically.
LoginExtension - interface org.omus.ext.LoginExtension.
This interface is useful if you want to modify the way users are registered or logged in.
LogManager - class org.omus.core.LogManager.
Contains methods to create custom log entries in the logging table on the server.
logout(String) - Method in class org.omus.core.User
Logs out the user, passing the specified error code to the client before closing the connection.
LogoutExtension - interface org.omus.ext.LogoutExtension.
A logout extension can be written to modify the properties of the user before they are written to the database.
LongField - class org.omus.data.LongField.
A class for properties or table columns configured as a long, corresponding to the number datatype in ActionScript.
LongField(String, long) - Constructor for class org.omus.data.LongField
Creates a new LongField with the specified name and value.

M

matches(DataRow) - Method in class org.omus.data.TableDefinition
Returns true if the specified DataRow matches this table definition.
Message - class org.omus.data.Message.
A message that can be sent to Flash clients or to other users and groups on the server.
Message(String) - Constructor for class org.omus.data.Message
Creates a new message with the specified subject.
Message(String, User) - Constructor for class org.omus.data.Message
Creates a new message with the specified subject and the specified user set as the sender.
messageFromClient(Message, User) - Method in interface org.omus.ext.GroupExtension
Invoked after a message from the specified sender has been received.
messageToGroup(Message) - Method in interface org.omus.ext.GroupExtension
Invoked before a message is sent to all the clients who are currently member of this group.
messageToUser(Message, User) - Method in interface org.omus.ext.GroupExtension
Invoked before a message is sent to the specified user.
MessagingManager - class org.omus.core.MessagingManager.
Handles the delivery of messages.

O

open() - Method in class org.omus.core.Group
Opens the group for other users to join.
org.omus.core - package org.omus.core
 
org.omus.data - package org.omus.data
 
org.omus.db - package org.omus.db
 
org.omus.ext - package org.omus.ext
 

P

PasswordDecoder - interface org.omus.ext.PasswordDecoder.
Provides a method to deode an encrypted password.
prepareGroupCreation(GroupCreationData) - Method in interface org.omus.ext.GroupExtension
Invoked before the group will be created.
prepareLogin(AuthenticationData, InetAddress, int) - Method in interface org.omus.ext.LoginExtension
Invoked before a registered user is logged in.
prepareLogout(User) - Method in interface org.omus.ext.LogoutExtension
Invoked when the specified user will be logged out.
prepareRegister(RegistrationData, InetAddress, int) - Method in interface org.omus.ext.LoginExtension
Invoked before a new user is registered.
PropertySet - class org.omus.core.PropertySet.
Represents a collection of properties.
PropertyUpdate - class org.omus.core.PropertyUpdate.
A subset of a PropertySet instance that gets passed to the syncUserProperties and syncGroupProperties methods in org.omus.ext.GroupExtension.
publish(Message) - Method in class org.omus.core.MessagingManager
Sends a message to all users that have subscribed to the subject of this message.
put(DataField) - Method in class org.omus.data.DataRow
Adds the specified DataField to this DataRow.
putAll(DataRow) - Method in class org.omus.data.DataRow
Adds all DataFields of the specified DataRow to this DataRow.

R

RegistrationData - class org.omus.core.RegistrationData.
Contains registration data of a user.
remove(int) - Method in class org.omus.data.DataList
Removes and returns the DataField at the specified index position.
remove(String) - Method in class org.omus.data.DataRow
Removes and returns the DataField with the specified name.
removeAll() - Method in class org.omus.data.DataRow
Removes all DataFields from this DataRow.
removeAll() - Method in class org.omus.data.DataList
Removes all elements from this list.
removeAllRows() - Method in class org.omus.data.DataTable
Removes all rows from this table.
removeListener(FieldListener) - Method in class org.omus.data.DataField
Removes the specified listener from this DataField.
removeRow(int) - Method in class org.omus.data.DataTable
Removes and returns the row at the specified index.
reset() - Method in class org.omus.data.CounterField
Resets the value of this CounterField to the initial value.

S

schedule(TimerTask, Date) - Method in class org.omus.core.TaskManager
Schedules the specified task for execution at the specified time.
schedule(TimerTask, Date, long) - Method in class org.omus.core.TaskManager
Schedules the specified task for repeated fixed-delay execution, beginning at the specified time.
schedule(TimerTask, long) - Method in class org.omus.core.TaskManager
Schedules the specified task for execution after the specified delay.
schedule(TimerTask, long, long) - Method in class org.omus.core.TaskManager
Schedules the specified task for repeated fixed-delay execution, beginning after the specified delay.
scheduleAtFixedRate(TimerTask, Date, long) - Method in class org.omus.core.TaskManager
Schedules the specified task for repeated fixed-rate execution, beginning at the specified time.
scheduleAtFixedRate(TimerTask, long, long) - Method in class org.omus.core.TaskManager
Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
sendToAll(Message) - Method in class org.omus.core.MessagingManager
Sends a message to all users who are currently logged into the server.
sendToClient(Message) - Method in class org.omus.core.User
Sends the specified Message to the Flash client of this user.
sendToClients(Message) - Method in class org.omus.core.Group
Sends the specified Message to all the clients in this group.
sendToClients(Message, User) - Method in class org.omus.core.Group
Sends the specified Message to all the clients in this group except for the specified user.
sendToGroup(Message, String) - Method in class org.omus.core.MessagingManager
Sends a message to all the members of a particular group.
sendToUser(Message, String) - Method in class org.omus.core.MessagingManager
Sends a message to one user.
Services - class org.omus.core.Services.
A static utility class to retrieve instances of one of the Manager classes.
set(int) - Method in class org.omus.data.CounterField
Sets the value of this CounterField to the specified value.
setAllParams(DataRow) - Method in class org.omus.db.DbTransactionPart
Adds all DataFields contained in the specified DataRow as a parameter to this DbTransactionPart.
setAllParams(DataRow) - Method in class org.omus.db.DbTransaction
Adds all DataFields contained in the specified DataRow as a parameter to this DbTransaction.
setASClass(String) - Method in class org.omus.data.DataRow
Sets the name of the ActionScript class for this DataRow to the specified string.
setBoolean(boolean) - Method in class org.omus.data.BooleanField
Sets the value of this BooleanField to the specified boolean primitive.
setDate(Date) - Method in class org.omus.data.DateField
Sets the value of this DateField to the specified Date.
setDouble(double) - Method in class org.omus.data.DoubleField
Sets the value of this DoubleField to the specified double.
setEmail(String) - Method in class org.omus.core.RegistrationData
Sets the email address of the user to the specified string.
setErrorCode(String) - Method in class org.omus.core.GroupCreationData
Sets the error code to the specified string.
setErrorCode(String) - Method in class org.omus.core.AuthenticationData
Sets the error code to the specified string.
setErrorCode(String) - Method in class org.omus.core.PropertyUpdate
Sets the error code of this instance to the specified string.
setInt(int) - Method in class org.omus.data.IntField
Sets the value of this IntField to the specified int.
setLong(long) - Method in class org.omus.data.LongField
Sets the value of this LongField to the specified long.
setParam(DataField) - Method in class org.omus.db.DbTransactionPart
Adds the specified DataField as a parameter to this DbTransactionPart.
setParam(DataField) - Method in class org.omus.db.DbTransaction
Adds the specified DataField as a parameter to this DbTransaction.
setPassword(String) - Method in class org.omus.core.AuthenticationData
Sets the password of the user to the specified string.
setString(String) - Method in class org.omus.data.StringField
Sets the value of this StringField to the specified string.
setUndeliveredCommand(Command) - Method in class org.omus.data.Message
Sets the command that gets executed if the message can not be delivered to the recipient.
setUsername(String) - Method in class org.omus.core.AuthenticationData
Sets the name of the user to the specified string.
size() - Method in class org.omus.core.PropertySet
Returns the number of properties in this set.
size() - Method in class org.omus.data.DataTable
Returns the number of rows of this table.
size() - Method in class org.omus.data.DataRow
Returns the number of DataFields of this DataRow.
size() - Method in class org.omus.data.DataList
Returns the number of DataFields of this DataList.
size() - Method in class org.omus.db.DbTransaction
Returns the number of DbWriter and DbReader objects that have been added to this transaction.
sort(DataList.Comparator) - Method in class org.omus.data.DataList
Sorts the list according to the order induced by the specified comparator.
sort(DataTable.Comparator) - Method in class org.omus.data.DataTable
Sorts the table according to the order induced by the specified comparator.
Start - class org.omus.core.Start.
 
StringField - class org.omus.data.StringField.
The class corresponding to String objects in ActionScript.
StringField(String, String) - Constructor for class org.omus.data.StringField
Creates a new StringField with the specified name and value.
subscribe(User, String) - Method in class org.omus.core.MessagingManager
Subscribes the specified user to all messages with the specified subject.
syncGroupProperties(PropertyUpdate, User) - Method in interface org.omus.ext.GroupExtension
Invoked before the properties of this group will be synchronized.
synchronize() - Method in class org.omus.core.PropertySet
Synchronizes all modified properties in this set according to the synchronization settings in the XML configuration file on the server.
syncUserProperties(PropertyUpdate, User, User) - Method in interface org.omus.ext.GroupExtension
Invoked before the properties of the specified owner will be synchronized.

T

TableDefinition - class org.omus.data.TableDefinition.
TableDefinition objects are used to define the names and datatypes of the columns of a DataTable object.
TableDefinition() - Constructor for class org.omus.data.TableDefinition
 
TaskManager - class org.omus.core.TaskManager.
A facility to schedule tasks for future execution in a background thread.
toString() - Method in class org.omus.core.User
 
toString() - Method in class org.omus.data.DateField
 
toString() - Method in class org.omus.data.StringField
 
toString() - Method in class org.omus.data.LongField
 
toString() - Method in class org.omus.data.DataTable
 
toString() - Method in class org.omus.data.BooleanField
 
toString() - Method in class org.omus.data.Message
 
toString() - Method in class org.omus.data.MarshalledField
 
toString() - Method in class org.omus.data.DataRow
 
toString() - Method in class org.omus.data.DataList
 
toString() - Method in class org.omus.data.DoubleField
 
toString() - Method in class org.omus.data.TableDefinition
 
toString() - Method in class org.omus.data.IntField
 
toString() - Method in class org.omus.data.CounterField
 
toString() - Method in class org.omus.db.DbTransactionPart
 
toString() - Method in class org.omus.db.DbTransaction
 
 
 

U

unsubscribe(User, String) - Method in class org.omus.core.MessagingManager
Unsubscribes the specified user from all messages with the specified subject.
unsubscribeAll(User) - Method in class org.omus.core.MessagingManager
Unsubscribes the specified user from all messages.
User - class org.omus.core.User.
Represents a user.
userJoined(User, DataRow) - Method in interface org.omus.ext.GroupExtension
Invoked after a user has joined the group.
userLeft(User) - Method in interface org.omus.ext.GroupExtension
Invoked after a user has left the group.

V

visit(BooleanField) - Method in interface org.omus.data.FieldVisitor
Visits the specified BooleanField.
visit(CounterField) - Method in interface org.omus.data.FieldVisitor
Visits the specified CounterField.
visit(DataList) - Method in interface org.omus.data.FieldVisitor
Visits the specified DataList.
visit(DataRow) - Method in interface org.omus.data.FieldVisitor
Visits the specified DataRow.
visit(DataTable) - Method in interface org.omus.data.FieldVisitor
Visits the specified DataTable.
visit(DateField) - Method in interface org.omus.data.FieldVisitor
Visits the specified DateField.
visit(DoubleField) - Method in interface org.omus.data.FieldVisitor
Visits the specified DoubleField.
visit(IntField) - Method in interface org.omus.data.FieldVisitor
Visits the specified IntField.
visit(LongField) - Method in interface org.omus.data.FieldVisitor
Visits the specified LongField.
visit(StringField) - Method in interface org.omus.data.FieldVisitor
Visits the specified StringField.

W

warn(String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code if the LogManager is configured to process messages of level WARN or higher.
warn(String, Exception) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level WARN or higher.
warn(String, Exception, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code, info string and the stackTrace of the specified Exception, if the LogManager is configured to process messages of level WARN or higher.
warn(String, String) - Method in class org.omus.core.LogManager
Creates a log entry with the specified error code and info string if the LogManager is configured to process messages of level WARN or higher.
warnEnabled() - Method in class org.omus.core.LogManager
Returns true if the LogManager is configured to process log entries of level WARN or higher.
 
 

A B C D E F G I K L M O P R S T U V W