|
xmlBlaster 1.6.2 client API | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.xmlBlaster.util.queue.jdbc.JdbcQueueCommonTablePlugin
Persistence queue implementation on a DB based on JDBC.
| Field Summary |
| Fields inherited from interface org.xmlBlaster.util.queue.I_Queue |
IGNORE_PUT_INTERCEPTOR, USE_PUT_INTERCEPTOR |
| Constructor Summary | |
JdbcQueueCommonTablePlugin()
|
|
| Method Summary | |
void |
addPutListener(I_QueuePutListener l)
Register a listener which wants to be informed on put() events. |
void |
addStorageSizeListener(I_StorageSizeListener listener)
Adds a storage size listener to the storage. |
org.xmlBlaster.engine.msgstore.I_MapEntry |
change(org.xmlBlaster.engine.msgstore.I_MapEntry entry,
org.xmlBlaster.engine.msgstore.I_ChangeCallback callback)
|
org.xmlBlaster.engine.msgstore.I_MapEntry |
change(long uniqueId,
org.xmlBlaster.engine.msgstore.I_ChangeCallback callback)
This method is threadsafe because it makes a lookup for the updated entry within the synchronization point. |
long |
clear()
Clears everything and removes the queue (i.e. |
void |
destroy()
Cleans up the current queue (it deletes all the entries and frees the table used and cleans up all tables in the database). |
long |
embeddedObjectsToXml(java.io.OutputStream out,
java.util.Properties props)
Dump all entries of this queue to the given output stream. |
org.xmlBlaster.engine.msgstore.I_MapEntry |
get(long uniqueId)
Lookup entry without removing. |
org.xmlBlaster.engine.msgstore.I_MapEntry[] |
getAll(I_EntryFilter entryFilter)
Retrieve all entries in the storage, please take care on memory consumption. |
java.util.ArrayList |
getEntries(I_EntryFilter entryFilter)
Gets a copy of the entries (e.g the messages) in the queue. |
long[] |
getEntryReferences()
Gets the references of the entries in the queue. |
PluginInfo |
getInfo()
Enforced by I_StoragePlugin |
protected JdbcManagerCommonTable |
getJdbcQueueManagerCommonTable(PluginInfo pluginInfo)
Returns a JdbcManagerCommonTable for a specific queue. |
JdbcManagerCommonTable |
getManager()
|
long |
getMaxNumOfBytes()
Access the configured capacity (maximum bytes) for this queue |
long |
getMaxNumOfEntries()
Returns the maximum number of elements for this queue |
long |
getNumOfBytes()
It returns the size of the queue. |
long |
getNumOfEntries()
It returns the size of the queue. |
long |
getNumOfPersistentBytes()
It returns the number of persistent entries in the queue. |
long |
getNumOfPersistentEntries()
It returns the number of persistent entries in the queue. |
java.lang.Object |
getProperties()
Access the current queue configuration |
StorageId |
getStorageId()
Returns the unique ID of this queue |
I_StorageSizeListener[] |
getStorageSizeListeners()
|
java.lang.String |
getType()
Enforced by I_Plugin |
java.lang.String |
getVersion()
Enforced by I_Plugin |
boolean |
hasStorageSizeListener(I_StorageSizeListener listener)
Checks wether the specified listener is registered. |
void |
init(Global glob,
PluginInfo pluginInfo)
Enforced by I_Plugin |
void |
initialize(StorageId uniqueQueueId,
java.lang.Object userData)
Is called after the instance is created. |
boolean |
isNotifiedAboutAddOrRemove()
Defaults to false. |
boolean |
isShutdown()
Performs what has to be done when the Map Plugin shuts down. |
boolean |
isTransient()
|
I_QueueEntry |
peek()
Returns the first element in the queue but does not remove it from that queue (leaves it untouched). |
java.util.ArrayList |
peek(int numOfEntries,
long numOfBytes)
Returns maximum the first num element in the queue but does not remove it from that queue (leaves it untouched). |
java.util.ArrayList |
peekLowest(int numOfEntries,
long numOfBytes,
I_QueueEntry limitEntry,
boolean leaveOne)
Same as takeLowest but it does not remove the entries. |
java.util.ArrayList |
peekSamePriority(int numOfEntries,
long numOfBytes)
Returns maximum the first num element in the queue of highest priority but does not remove it from that queue (leaves it untouched). |
java.util.ArrayList |
peekWithLimitEntry(I_QueueEntry limitEntry)
It returns the entries which are higher than the entry specified in the argument list. |
java.util.ArrayList |
peekWithPriority(int numOfEntries,
long numOfBytes,
int minPriority,
int maxPriority)
Returns maximum given number of entries from the queue (none blocking). |
int |
put(org.xmlBlaster.engine.msgstore.I_MapEntry mapEntry)
Adds one entry and automatically increments the reference counter. |
void |
put(I_QueueEntry[] queueEntries,
boolean ignorePutInterceptor)
Puts one queue entry on top of the queue. |
void |
put(I_QueueEntry queueEntry,
boolean ignorePutInterceptor)
Puts one queue entry on top of the queue. |
boolean |
registerStorageProblemListener(I_StorageProblemListener listener)
registers a new listener to be notified. |
int |
remove()
Removes the first element in the queue This method does not block. |
int |
remove(org.xmlBlaster.engine.msgstore.I_MapEntry mapEntry)
|
int |
remove(long uniqueId)
|
long |
remove(long numOfEntries,
long numOfBytes)
Removes max numOfEntries messages. |
long |
removeHead(I_QueueEntry toEntry)
removes the head of the queue until (but not included) the entry specified as the argument. |
org.xmlBlaster.engine.msgstore.I_MapEntry |
removeOldest()
Remove the oldest entry. |
void |
removePutListener(I_QueuePutListener l)
Remove the listener which wanted to be informed on put() events. |
int |
removeRandom(I_Entry entry)
Removes the given entry. |
boolean[] |
removeRandom(I_Entry[] queueEntries)
Removes the given entries. |
int |
removeRandom(long dataId)
Removes the given entry. |
boolean[] |
removeRandom(long[] dataIdArray)
Removes the given entries. |
void |
removeStorageSizeListener(I_StorageSizeListener listener)
Removes the specified listener from the queue. |
long |
removeWithLimitEntry(I_QueueEntry limitEntry,
boolean inclusive)
It removes the entries which are higher than the entry specified in the argument list. |
long |
removeWithPriority(long numOfEntries,
long numOfBytes,
int minPriority,
int maxPriority)
Removes max numOfEntries messages (or less depending on the numOfBytes). |
void |
setNotifiedAboutAddOrRemove(boolean notify)
|
void |
setProperties(java.lang.Object userData)
Allows to overwrite properties which where passed on initialize() The properties which support hot configuration are depending on the used implementation |
void |
shutdown()
Shutdown the implementation, sync with data store |
I_QueueEntry |
take()
Currently not supported by I_Queue. |
java.util.ArrayList |
take(int numOfEntries,
long numOfBytes)
Currently not supported by I_Queue. |
java.util.ArrayList |
takeLowest(int numOfEntries,
long numOfBytes,
I_QueueEntry limitEntry,
boolean leaveOne)
Takes entries from the back of the queue. |
java.util.ArrayList |
takeWithPriority(int numOfEntries,
long numOfBytes,
int minPriority,
int maxPriority)
Takes given number of entries out of the queue. |
java.lang.String |
toXml(java.lang.String extraOffset)
Dump state to XML string. |
boolean |
unRegisterStorageProblemListener(I_StorageProblemListener listener)
unregisters a listener. |
int |
update(I_QueueEntry queueEntry)
Updates the given message queue entry with a new value. |
java.lang.String |
usage()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public JdbcQueueCommonTablePlugin()
| Method Detail |
public boolean isTransient()
isTransient in interface I_Storage
protected JdbcManagerCommonTable getJdbcQueueManagerCommonTable(PluginInfo pluginInfo)
throws XmlBlasterException
XmlBlasterException
public void initialize(StorageId uniqueQueueId,
java.lang.Object userData)
throws XmlBlasterException
initialize in interface I_QueueuniqueQueueId - A unique name, allowing to create a unique name for a persistent store (e.g. file name)userData - For example a Properties object or a String[] args object passing the configuration data
XmlBlasterExceptionI_Queue.initialize(StorageId, Object)
public void setProperties(java.lang.Object userData)
throws XmlBlasterException
I_Queue
setProperties in interface I_QueueXmlBlasterExceptionI_Queue.setProperties(Object)public java.lang.Object getProperties()
getProperties in interface I_Queuepublic void setNotifiedAboutAddOrRemove(boolean notify)
setNotifiedAboutAddOrRemove in interface I_Queuepublic boolean isNotifiedAboutAddOrRemove()
I_Queue
isNotifiedAboutAddOrRemove in interface I_Queuepublic void addPutListener(I_QueuePutListener l)
I_Queue
addPutListener in interface I_QueueI_Queue.addPutListener(I_QueuePutListener)public void removePutListener(I_QueuePutListener l)
I_Queue
removePutListener in interface I_QueueI_Queue.removePutListener(I_QueuePutListener)
public long[] getEntryReferences()
throws XmlBlasterException
getEntryReferences in interface I_QueueXmlBlasterException
public java.util.ArrayList getEntries(I_EntryFilter entryFilter)
throws XmlBlasterException
I_Queue
getEntries in interface I_QueueentryFilter - if not null the you can control which entries to return
with the callback entryFilter.intercept(I_Entry).
XmlBlasterExceptionI_Queue.getEntries(I_EntryFilter)
public void put(I_QueueEntry queueEntry,
boolean ignorePutInterceptor)
throws XmlBlasterException
I_Queue
put in interface I_QueueignorePutInterceptor - if set to 'IGNORE_PUT_INTERCEPTOR=true' the put will not inform the
QueuePutListener that a put occurred.
XmlBlasterException - in case an error occurs. Possible causes of
error can be a communication exception of the underlying implementation (jdbc, file system etc).I_Queue.put(I_QueueEntry, boolean)
public void put(I_QueueEntry[] queueEntries,
boolean ignorePutInterceptor)
throws XmlBlasterException
I_Queue
put in interface I_QueueignorePutInterceptor - if set to 'IGNORE_PUT_INTERCEPTOR=true' the put will not inform the
QueuePutListener that a put occurred.
XmlBlasterException - in case an error occurs. Possible causes of
error can be a communication exception of the underlying implementation (jdbc, file system etc).I_Queue.put(I_QueueEntry[], boolean)public StorageId getStorageId()
getStorageId in interface I_Storage
public I_QueueEntry take()
throws XmlBlasterException
XmlBlasterException
public java.util.ArrayList takeWithPriority(int numOfEntries,
long numOfBytes,
int minPriority,
int maxPriority)
throws XmlBlasterException
I_Queue
takeWithPriority in interface I_QueuenumOfEntries - Take numOfEntries entries, if -1 take all entries currently foundnumOfBytes - so many entries are returned as not to exceed the amount specified. If the first
entry is bigger than this amount, it is returned anyway.minPriority - The lower priority (inclusive), usually 0 lowest, 9 highestmaxPriority - The higher priority (inclusive), usually 0 lowest, 9 highest
XmlBlasterException - in case the underlying implementation gets an exception while retrieving the element.I_Queue.takeWithPriority(int,long,int,int)
public java.util.ArrayList take(int numOfEntries,
long numOfBytes)
throws XmlBlasterException
XmlBlasterException
public java.util.ArrayList takeLowest(int numOfEntries,
long numOfBytes,
I_QueueEntry limitEntry,
boolean leaveOne)
throws XmlBlasterException
I_Queue
takeLowest in interface I_QueuenumOfEntries - inclusive, zero up to numOfEntries, if -1 up to the whole queuenumOfBytes - inclusive, and minimum one is returned (but not if limitEntry suppress it)leaveOne - Usually set to false. (true for cache queue to never flush transient queue totally)
XmlBlasterExceptionI_Queue.takeLowest(int, long, I_QueueEntry, boolean)
public java.util.ArrayList peekLowest(int numOfEntries,
long numOfBytes,
I_QueueEntry limitEntry,
boolean leaveOne)
throws XmlBlasterException
I_Queue
peekLowest in interface I_QueueXmlBlasterExceptionI_Queue.peekLowest(int, long, I_QueueEntry, boolean)
public I_QueueEntry peek()
throws XmlBlasterException
I_Queue
peek in interface I_QueueXmlBlasterException - if the underlying implementation gets an exception.I_Queue.peek()
public java.util.ArrayList peek(int numOfEntries,
long numOfBytes)
throws XmlBlasterException
I_Queue
peek in interface I_QueuenumOfEntries - Access num entries, if -1 access all entries currently foundnumOfBytes - is the maximum size in bytes of the array to return, -1 is unlimited .
XmlBlasterException - if the underlying implementation gets an exception.I_Queue.peek(int,long)
public java.util.ArrayList peekSamePriority(int numOfEntries,
long numOfBytes)
throws XmlBlasterException
I_Queue
peekSamePriority in interface I_QueuenumOfEntries - Access num entries, if -1 access all entries currently foundnumOfBytes - so many entries are returned as not to exceed the amount specified. If the first
entry is bigger than this amount, it is returned anyway. -1 is unlimited.
XmlBlasterException - if the underlying implementation gets an exception.I_Queue.peekSamePriority(int, long)
public java.util.ArrayList peekWithPriority(int numOfEntries,
long numOfBytes,
int minPriority,
int maxPriority)
throws XmlBlasterException
I_Queue
peekWithPriority in interface I_QueuenumOfEntries - Access num entries, if -1 take all entries currently foundnumOfBytes - so many entries are returned as not to exceed the amount specified. If the first
entry is bigger than this amount, it is returned anyway.minPriority - The lower priority (inclusive), usually 0 lowest, 9 highest, <0 is not allowedmaxPriority - The higher priority (inclusive), usually 0 lowest, 9 highest, <0 is not allowed
XmlBlasterException - in case the underlying implementation gets an exception while retrieving the element.I_Queue.peekWithPriority(int, long, int, int)
public java.util.ArrayList peekWithLimitEntry(I_QueueEntry limitEntry)
throws XmlBlasterException
I_Queue
peekWithLimitEntry in interface I_QueuelimitEntry - the entry which limits the peek. Only entries of higher order, i.e.
entries having a higher priority, or same priority and lower uniqueId are
returned. If entryLimit is null or no entries are higher than entryLimit,
an empty list is returned.
Note: The limitEntry does not need to be in the queue.
XmlBlasterExceptionI_Queue.peekWithLimitEntry(I_QueueEntry)
public long removeWithLimitEntry(I_QueueEntry limitEntry,
boolean inclusive)
throws XmlBlasterException
I_Queue
removeWithLimitEntry in interface I_QueuelimitEntry - the entry which limits the remove. Only entries of higher order, i.e.
entries having a higher priority, or same priority and lower uniqueId are
deleted. If entryLimit is null or no entries are higher than entryLimit,
an empty list is returned.inclusive - if 'true', then also the entry specified will be removed (if it exists). If false
the remove is exclusive, i.e. the specified entry is left in the queue.
Note: The limitEntry does not need to be in the queue.
XmlBlasterExceptionI_Queue.removeWithLimitEntry(I_QueueEntry, boolean)
public int remove()
throws XmlBlasterException
remove in interface I_QueueXmlBlasterException - if the underlying implementation gets an exception.
public long remove(long numOfEntries,
long numOfBytes)
throws XmlBlasterException
remove in interface I_QueuenumOfEntries - Erase num entries or less if less entries are available, -1 erases everythingnumOfBytes - so many entries are returned as not to exceed the amount specified. If the first
entry is bigger than this amount, it is removed anyway.
XmlBlasterException - if the underlying implementation gets an exception.
public int removeRandom(long dataId)
throws XmlBlasterException
dataId - the unique id. It must be unique within the storage area
of the implementing queue. In other words, if the underlying
implementation is on RAM, then the storage area is the JVM, that
is the queue must be unique in the same JVM. If the queue is a
jdbc, the dataId is unique in the DB used.
XmlBlasterException
public boolean[] removeRandom(long[] dataIdArray)
throws XmlBlasterException
XmlBlasterException
public int removeRandom(I_Entry entry)
throws XmlBlasterException
I_Queue
removeRandom in interface I_Queueentry - The entry to erase.
XmlBlasterExceptionI_Queue.removeRandom(I_Entry)
public boolean[] removeRandom(I_Entry[] queueEntries)
throws XmlBlasterException
I_Queue
removeRandom in interface I_QueuequeueEntries - the entries to erase.
XmlBlasterExceptionI_Queue.removeRandom(I_Entry[])
public long removeWithPriority(long numOfEntries,
long numOfBytes,
int minPriority,
int maxPriority)
throws XmlBlasterException
I_Queue
removeWithPriority in interface I_QueuenumOfEntries - Erase num entries or less if less entries are available, -1 erases everythingnumOfBytes - so many entries are returned as not to exceed the amout specified. If the first
entry is bigger than this amount, it is returned anyway.minPriority - The lower priority (inclusive), usually 0 lowest, 9 highestmaxPriority - The higher priority (inclusive), usually 0 lowest, 9 highest
XmlBlasterException - in case the underlying implementation gets an exception while retrieving the element.I_Queue.removeWithPriority(long, long, int, int)public long getNumOfEntries()
getNumOfEntries in interface I_StorageI_Storage.getNumOfEntries()public long getNumOfPersistentEntries()
getNumOfPersistentEntries in interface I_QueueI_Queue.getNumOfPersistentEntries()public long getMaxNumOfEntries()
I_Storage
getMaxNumOfEntries in interface I_StorageI_Storage.getMaxNumOfEntries()public long getNumOfBytes()
getNumOfBytes in interface I_StorageI_Storage.getNumOfBytes()public long getNumOfPersistentBytes()
getNumOfPersistentBytes in interface I_QueueI_Queue.getNumOfPersistentBytes()public long getMaxNumOfBytes()
I_Queue
getMaxNumOfBytes in interface I_QueueI_Queue.getMaxNumOfBytes()
public int update(I_QueueEntry queueEntry)
throws XmlBlasterException
XmlBlasterExceptionpublic JdbcManagerCommonTable getManager()
public long clear()
clear in interface I_Queue
public long removeHead(I_QueueEntry toEntry)
throws XmlBlasterException
I_Queue
removeHead in interface I_QueuetoEntry - the entry until to remove.
XmlBlasterExceptionI_Queue.removeHead(I_QueueEntry)public void shutdown()
shutdown in interface I_Queuepublic boolean isShutdown()
I_Storage
isShutdown in interface I_Storagepublic java.lang.String usage()
usage in interface I_Queuepublic final java.lang.String toXml(java.lang.String extraOffset)
I_Queue
toXml in interface I_QueueextraOffset - Indent the dump with given ASCII blanks
public void init(Global glob,
PluginInfo pluginInfo)
init in interface I_PluginI_Plugin.init(org.xmlBlaster.util.Global, PluginInfo)public java.lang.String getType()
getType in interface I_Pluginpublic java.lang.String getVersion()
getVersion in interface I_Pluginpublic PluginInfo getInfo()
getInfo in interface I_StoragePlugin
public void destroy()
throws XmlBlasterException
destroy in interface org.xmlBlaster.engine.msgstore.I_MapXmlBlasterException
public org.xmlBlaster.engine.msgstore.I_MapEntry get(long uniqueId)
throws XmlBlasterException
org.xmlBlaster.engine.msgstore.I_Map
get in interface org.xmlBlaster.engine.msgstore.I_MapXmlBlasterException
public org.xmlBlaster.engine.msgstore.I_MapEntry[] getAll(I_EntryFilter entryFilter)
throws XmlBlasterException
org.xmlBlaster.engine.msgstore.I_Map
getAll in interface org.xmlBlaster.engine.msgstore.I_MapentryFilter - null to get everything. If specified you can filter by this
callback the wanted entries.
XmlBlasterExceptionI_Map#getAll()
public int put(org.xmlBlaster.engine.msgstore.I_MapEntry mapEntry)
throws XmlBlasterException
org.xmlBlaster.engine.msgstore.I_Map
put in interface org.xmlBlaster.engine.msgstore.I_MapXmlBlasterException - in case an error occurs. Possible causes of
error can be a communication exception of the underlying implementation (jdbc, file system etc).I_Map.put(I_MapEntry)
public int remove(org.xmlBlaster.engine.msgstore.I_MapEntry mapEntry)
throws XmlBlasterException
remove in interface org.xmlBlaster.engine.msgstore.I_MapXmlBlasterException
public int remove(long uniqueId)
throws XmlBlasterException
remove in interface org.xmlBlaster.engine.msgstore.I_MapXmlBlasterException
public org.xmlBlaster.engine.msgstore.I_MapEntry removeOldest()
throws XmlBlasterException
org.xmlBlaster.engine.msgstore.I_Map
removeOldest in interface org.xmlBlaster.engine.msgstore.I_MapXmlBlasterExceptionI_Map.removeOldest()public boolean registerStorageProblemListener(I_StorageProblemListener listener)
I_StorageProblemNotifier
registerStorageProblemListener in interface I_StorageProblemNotifierI_StorageProblemNotifier.registerStorageProblemListener(I_StorageProblemListener)public boolean unRegisterStorageProblemListener(I_StorageProblemListener listener)
I_StorageProblemNotifier
unRegisterStorageProblemListener in interface I_StorageProblemNotifierI_StorageProblemNotifier.unRegisterStorageProblemListener(I_StorageProblemListener)
public org.xmlBlaster.engine.msgstore.I_MapEntry change(org.xmlBlaster.engine.msgstore.I_MapEntry entry,
org.xmlBlaster.engine.msgstore.I_ChangeCallback callback)
throws XmlBlasterException
change in interface org.xmlBlaster.engine.msgstore.I_Mapentry - the entry to change. This is the old entry, i.e. the entry on which the modification
has to take place by callback.
Or it is the new entry and you can pass null for callback.
IMPORTANT: This method is not threadsafe since it does not make a lookup
to get the actual entry. The specified entry could be a dirty read, in which case the
current entry would be overwritten with this dirty value. If you want to work threadsafe
you should invoke change(long, callback). That method makes a lookup within the same
synchronization point.callback - the object on which the callback method 'changeEntry' is invoked. The modification
of the object is done in that method. If you pass null, then the changeEntry is not invoked
and the processing continues with entry.
XmlBlasterException - if something goes wrong when making the change (for example if the
entry is not in the map) or if the callback throws an exception.I_Map.change(I_MapEntry, I_ChangeCallback)
public org.xmlBlaster.engine.msgstore.I_MapEntry change(long uniqueId,
org.xmlBlaster.engine.msgstore.I_ChangeCallback callback)
throws XmlBlasterException
org.xmlBlaster.engine.msgstore.I_Map
change in interface org.xmlBlaster.engine.msgstore.I_MapuniqueId - the uniqueId of the entry to change. This is the old entry, i.e. the entry on
which the modification has to take place.callback - the object on which the callback method 'changeEntry' is invoked. The modification
of the object is done in that method. If you pass null, then the changeEntry is not invoked
and the processing continues with entry.
XmlBlasterException - if something goes wrong when making the change (for example if the
entry is not in the map) or if the callback throws an exception.I_Map.change(long, I_ChangeCallback)public void addStorageSizeListener(I_StorageSizeListener listener)
I_Storage
addStorageSizeListener in interface I_Storagelistener - the listener to be added, adding the same listener multiple times will only remember one and fire onceI_Storage.addStorageSizeListener(I_StorageSizeListener)public void removeStorageSizeListener(I_StorageSizeListener listener)
I_Storage
removeStorageSizeListener in interface I_Storagelistener - the listener to be removed. Currently only one.
If you pass null, all queueSizeListeners are removed.I_Storage.removeStorageSizeListener(I_StorageSizeListener)public boolean hasStorageSizeListener(I_StorageSizeListener listener)
I_Storage
hasStorageSizeListener in interface I_Storagelistener - the listener to check against. If you pass null
it checks if at least one listener exists.
I_Storage.hasStorageSizeListener(I_StorageSizeListener)public I_StorageSizeListener[] getStorageSizeListeners()
getStorageSizeListeners in interface I_StorageI_Storage.getStorageSizeListeners()
public long embeddedObjectsToXml(java.io.OutputStream out,
java.util.Properties props)
throws java.lang.Exception
I_Queue
embeddedObjectsToXml in interface I_Queueout - The output stream to dump the entriesprops - Configuration properties, not yet specified, just pass null
java.lang.ExceptionI_Map.embeddedObjectsToXml(OutputStream, Properties)
|
xmlBlaster 1.6.2 client API | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||