jBroker® MQ 2.1
A B C D E G H I J L M N O P Q R S T U V W X

A

acknowledge() - Method in interface javax.jms.Message
Acknowledges all consumed messages of the session of this consumed message.
ACL_NAME - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
ACL name protecting the destination.
addCACertificate(byte[][]) - Method in class com.sssw.jms.api.JMQConnectionFactory
Add a DER encoded trusted CA certificate to this connection factory.
addPrincipalToGroup(String, String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Add a principal to the group.
addPrincipalToGroup(String, String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Add a principal to the group.
AUTO_ACKNOWLEDGE - Static variable in interface javax.jms.Session
With this acknowledgment mode, the session automatically acknowledges a client's receipt of a message either when the session has successfully returned from a call to receive or when the message listener the session has called to process the message successfully returns.

B

BytesMessage - interface javax.jms.BytesMessage.
A BytesMessage object is used to send a message containing a stream of uninterpreted bytes.

C

clearBody() - Method in interface javax.jms.Message
Clears out the message body.
clearProperties() - Method in interface javax.jms.Message
Clears a message's properties.
CLIENT_ACKNOWLEDGE - Static variable in interface javax.jms.Session
With this acknowledgment mode, the client acknowledges a consumed message by calling the message's acknowledge method.
close() - Method in class javax.jms.QueueRequestor
Closes the QueueRequestor and its session.
close() - Method in class javax.jms.TopicRequestor
Closes the TopicRequestor and its session.
close() - Method in interface javax.jms.QueueBrowser
Closes the QueueBrowser.
close() - Method in interface javax.jms.Session
Closes the session.
close() - Method in interface javax.jms.ConnectionConsumer
Closes the connection consumer.
close() - Method in interface javax.jms.Connection
Closes the connection.
close() - Method in interface javax.jms.MessageConsumer
Closes the message consumer.
close() - Method in interface javax.jms.MessageProducer
Closes the message producer.
close() - Method in class com.sssw.jms.api.JMQQueueRequestor
Closes the QueueRequestor and its session
close() - Method in class com.sssw.jms.api.JMQTopicRequestor
Closes the TopicRequestor and its session
com.sssw.jms.api - package com.sssw.jms.api
jBroker MQ extensions to the JMS API.
com.sssw.jms.api.admin - package com.sssw.jms.api.admin
Provides support for administrating jBroker MQ.
com.sssw.jms.api.security - package com.sssw.jms.api.security
jBroker MQ API's for pluggable security.
commit() - Method in interface javax.jms.Session
Commits all messages done in this transaction and releases any locks currently held.
commit() - Method in interface javax.jms.XASession
Throws a TransactionInProgressException, since it should not be called for an XASession object.
Connection - interface javax.jms.Connection.
A Connection object is a client's active connection to its JMS provider.
ConnectionConsumer - interface javax.jms.ConnectionConsumer.
For application servers, Connection objects provide a special facility for creating a ConnectionConsumer (optional).
ConnectionFactory - interface javax.jms.ConnectionFactory.
A ConnectionFactory object encapsulates a set of connection configuration parameters that has been defined by an administrator.
ConnectionMetaData - interface javax.jms.ConnectionMetaData.
A ConnectionMetaData object provides information describing the Connection object.
CONSUME_PERMISSION - Static variable in interface com.sssw.jms.api.security.JMQAclManager
String constant for CONSUME permission.
create() - Method in class com.sssw.jms.api.JMQDatabase
Create the jBroker MQ database.
createAcl(String, Acl) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Create an ACL with the given name
createAcl(String, Acl) - Method in interface com.sssw.jms.api.security.JMQAclManager
Create an ACL with the given name
createBrowser(Queue) - Method in interface javax.jms.QueueSession
Creates a QueueBrowser object to peek at the messages on the specified queue.
createBrowser(Queue, String) - Method in interface javax.jms.QueueSession
Creates a QueueBrowser object to peek at the messages on the specified queue using a message selector.
createBytesMessage() - Method in interface javax.jms.Session
Creates a BytesMessage object.
createConnection() - Method in class com.sssw.jms.api.JMQConnectionFactory
Create a Connection using the factory's default configuration.
createConnection(String, String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Create a Connection using the factory's default configuration and specified user name and password.
createConnectionConsumer(Queue, String, ServerSessionPool, int) - Method in interface javax.jms.QueueConnection
Creates a connection consumer for this connection (optional operation).
createConnectionConsumer(Topic, String, ServerSessionPool, int) - Method in interface javax.jms.TopicConnection
Creates a connection consumer for this connection (optional operation).
createDestination(String, int, Properties) - Method in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Create a destination (queue or topic) with a given name and properties.
createDurableConnectionConsumer(Topic, String, String, ServerSessionPool, int) - Method in interface javax.jms.TopicConnection
Create a durable connection consumer for this connection (optional operation).
createDurableSubscriber(Topic, String) - Method in interface javax.jms.TopicSession
Creates a durable subscriber to the specified topic.
createDurableSubscriber(Topic, String, String, boolean) - Method in interface javax.jms.TopicSession
Creates a durable subscriber to the specified topic, using a message selector or specifying whether messages published by its own connection should be delivered to it.
createFileMessage() - Method in interface com.sssw.jms.api.JMQSession
Creates a JMQFileMessage object.
createGroup(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Create a Group with the given name
createGroup(String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Create a Group with the given name
createMapMessage() - Method in interface javax.jms.Session
Creates a MapMessage object.
createMessage() - Method in interface javax.jms.Session
Creates a Message object.
createObjectMessage() - Method in interface javax.jms.Session
Creates an ObjectMessage object.
createObjectMessage(Serializable) - Method in interface javax.jms.Session
Creates an initialized ObjectMessage object.
createPublisher(Topic) - Method in interface javax.jms.TopicSession
Creates a publisher for the specified topic.
createQueue(String) - Method in interface javax.jms.QueueSession
Creates a queue identity given a Queue name.
createQueueConnection() - Method in interface javax.jms.QueueConnectionFactory
Creates a queue connection with the default user identity.
createQueueConnection() - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
Create a QueueConnection using the factory's default configuration.
createQueueConnection() - Method in class com.sssw.jms.api.JMQQueueConnectionFactory
Create a QueueConnection using the factory's default configuration.
createQueueConnection(String, String) - Method in interface javax.jms.QueueConnectionFactory
Creates a queue connection with the specified user identity.
createQueueConnection(String, String) - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
Create a QueueConnection using the factory's default configuration and specified user name and password.
createQueueConnection(String, String) - Method in class com.sssw.jms.api.JMQQueueConnectionFactory
Create a QueueConnection using the factory's default configuration and specified user name and password.
createQueueSession(boolean, int) - Method in interface javax.jms.QueueConnection
Creates a QueueSession object.
createQueueSession(boolean, int) - Method in interface javax.jms.XAQueueConnection
Creates an XAQueueSession object.
createReceiver(Queue) - Method in interface javax.jms.QueueSession
Creates a QueueReceiver object to receive messages from the specified queue.
createReceiver(Queue, String) - Method in interface javax.jms.QueueSession
Creates a QueueReceiver object to receive messages from the specified queue using a message selector.
createSender(Queue) - Method in interface javax.jms.QueueSession
Creates a QueueSender object to send messages to the specified queue.
createSOAPMessage() - Method in interface com.sssw.jms.api.JMQSession
Creates a JMQSOAPMessage object.
createStreamMessage() - Method in interface javax.jms.Session
Creates a StreamMessage object.
createSubscriber(Topic) - Method in interface javax.jms.TopicSession
Creates a nondurable subscriber to the specified topic.
createSubscriber(Topic, String, boolean) - Method in interface javax.jms.TopicSession
Creates a nondurable subscriber to the specified topic, using a message selector or specifying whether messages published by its own connection should be delivered to it.
createTemporaryQueue() - Method in interface javax.jms.QueueSession
Creates a TemporaryQueue object.
createTemporaryTopic() - Method in interface javax.jms.TopicSession
Creates a TemporaryTopic object.
createTextMessage() - Method in interface javax.jms.Session
Creates a TextMessage object.
createTextMessage(String) - Method in interface javax.jms.Session
Creates an initialized TextMessage object.
createTopic(String) - Method in interface javax.jms.TopicSession
Creates a topic identity given a Topic name.
createTopicConnection() - Method in interface javax.jms.TopicConnectionFactory
Creates a topic connection with the default user identity.
createTopicConnection() - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
Create a TopicConnection using the factory's default configuration.
createTopicConnection() - Method in class com.sssw.jms.api.JMQTopicConnectionFactory
Create a TopicConnection using the factory's default configuration.
createTopicConnection(String, String) - Method in interface javax.jms.TopicConnectionFactory
Creates a topic connection with the specified user identity.
createTopicConnection(String, String) - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
Create a TopicConnection using the factory's default configuration and specified user name and password.
createTopicConnection(String, String) - Method in class com.sssw.jms.api.JMQTopicConnectionFactory
Create a TopicConnection using the factory's default configuration and specified user name and password.
createTopicSession(boolean, int) - Method in interface javax.jms.XATopicConnection
Creates an XATopicSession object.
createTopicSession(boolean, int) - Method in interface javax.jms.TopicConnection
Creates a TopicSession object.
createUser(String, String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Create a User with the given name and password.
createUser(String, String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Create a User with the given name and password.
createXAConnection() - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
Create an XAConnection using the factory's default configuration.
createXAConnection() - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
Create an XAConnection using the factory's default configuration.
createXAConnection(String, String) - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
Create an XAConnection using the factory's default configuration and specified user name and password.
createXAConnection(String, String) - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
Create an XAConnection using the factory's default configuration and specified user name and password.
createXAQueueConnection() - Method in interface javax.jms.XAQueueConnectionFactory
Creates an XA queue connection with the default user identity.
createXAQueueConnection() - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
Create a XAQueueConnection using the factory's default configuration.
createXAQueueConnection(String, String) - Method in interface javax.jms.XAQueueConnectionFactory
Creates an XA queue connection with the specified user identity.
createXAQueueConnection(String, String) - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
Create a XAQueueConnection using the factory's default configuration and specified user name and password.
createXAQueueSession() - Method in interface javax.jms.XAQueueConnection
Creates an XAQueueSession object.
createXATopicConnection() - Method in interface javax.jms.XATopicConnectionFactory
Creates an XA topic connection with the default user identity.
createXATopicConnection() - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
Create a XATopicConnection using the factory's default configuration.
createXATopicConnection(String, String) - Method in interface javax.jms.XATopicConnectionFactory
Creates an XA topic connection with the specified user identity.
createXATopicConnection(String, String) - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
Create a XATopicConnection using the factory's default configuration and specified user name and password.
createXATopicSession() - Method in interface javax.jms.XATopicConnection
Creates an XATopicSession object.
createXMLMessage() - Method in interface com.sssw.jms.api.JMQSession
Creates a JMQXMLMessage object.

D

DEFAULT_DELIVERY_MODE - Static variable in interface javax.jms.Message
The message producer's default delivery mode is PERSISTENT.
DEFAULT_PRIORITY - Static variable in interface javax.jms.Message
The message producer's default priority is 4.
DEFAULT_TIME_TO_LIVE - Static variable in interface javax.jms.Message
The message producer's default time to live is unlimited; the message never expires.
delete() - Method in interface javax.jms.TemporaryQueue
Deletes this temporary queue.
delete() - Method in interface javax.jms.TemporaryTopic
Deletes this temporary topic.
deleteAcl(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Delete the ACL with the given name
deleteAcl(String) - Method in interface com.sssw.jms.api.security.JMQAclManager
Delete the ACL with the given name
deleteDestination(String, int) - Method in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Delete a destination (queue or topic) with a given name
deleteGroup(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Delete the Group with the given name
deleteGroup(String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Delete the Group with the given name
deleteUser(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Delete the User with the given name and password
deleteUser(String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Delete the User with the given name and password
DeliveryMode - interface javax.jms.DeliveryMode.
The delivery modes supported by the JMS API are PERSISTENT and NON_PERSISTENT.
Destination - interface javax.jms.Destination.
A Destination object encapsulates a provider-specific address.
destroy() - Method in class com.sssw.jms.api.JMQDatabase
Destroy the jBroker MQ database.
DUPS_OK_ACKNOWLEDGE - Static variable in interface javax.jms.Session
This acknowledgment mode instructs the session to lazily acknowledge the delivery of messages.
DURABLE_CONSUMERS_ALLOWED - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Does the destination allow durable subscribers.

E

equals(Object) - Method in class com.sssw.jms.api.admin.JMQSubscriberInfo
 
ExceptionListener - interface javax.jms.ExceptionListener.
If a JMS provider detects a serious problem with a Connection object, it informs the Connection object's ExceptionListener, if one has been registered.

G

getAcl(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get the ACL with the given name
getAcl(String) - Method in interface com.sssw.jms.api.security.JMQAclManager
Get the ACL with the given name
getAllAclNames() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get the names of all the ACLs defined in the jBroker MQ server
getAllAclNames() - Method in interface com.sssw.jms.api.security.JMQAclManager
Get the names of all the ACLs defined in the jBroker MQ server
getBoolean(String) - Method in interface javax.jms.MapMessage
Returns the boolean value with the specified name.
getBooleanProperty(String) - Method in interface javax.jms.Message
Returns the value of the boolean property with the specified name.
getBrokerName() - Method in class com.sssw.jms.api.JMQQueue
Get the broker name serving this Queue.
getByte(String) - Method in interface javax.jms.MapMessage
Returns the byte value with the specified name.
getByteProperty(String) - Method in interface javax.jms.Message
Returns the value of the byte property with the specified name.
getBytes(String) - Method in interface javax.jms.MapMessage
Returns the byte array value with the specified name.
getCertificateChain() - Method in interface com.sssw.jms.api.JMQConnection
Get the DER encoded certificate chain of the client.
getChar(String) - Method in interface javax.jms.MapMessage
Returns the Unicode character value with the specified name.
getCipherSuites() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the SSL cipher suites that client connections support.
getClientId() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the JMS Client ID
getClientId() - Method in class com.sssw.jms.api.admin.JMQSubscriberInfo
Get client identifier for durable subscriber's connection
getClientID() - Method in interface javax.jms.Connection
Gets the client identifier for this connection.
getConnection() - Method in class com.sssw.jms.api.JMQMessageBean
Returns the connection created by this message bean.
getConnectionFactory() - Method in class com.sssw.jms.api.JMQMessageBean
Returns the connection factory created by this message bean.
getConnectionFactory() - Method in interface com.sssw.jms.api.JMQConnection
Get the connection factory that created this object.
getConsumePermission() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get the permission for consuming messages, or browsing queues
getConsumer() - Method in class com.sssw.jms.api.JMQMessageBean
Returns the message consumer created by this message bean.
getDefaultPassword() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the default password
getDefaultUserName() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the default username
getDeliveryMode() - Method in interface javax.jms.MessageProducer
Gets the producer's default delivery mode.
getDestinationAdmin() - Method in interface com.sssw.jms.api.JMQConnection
Get the destination administration interface
getDestinationProperties(String, int) - Method in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Get destination (queue or topic) properties
getDestinations(int) - Method in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Return all destinations (queues or topics)
getDisableMessageID() - Method in interface javax.jms.MessageProducer
Gets an indication of whether message IDs are disabled.
getDisableMessageTimestamp() - Method in interface javax.jms.MessageProducer
Gets an indication of whether message timestamps are disabled.
getDocument() - Method in interface com.sssw.jms.api.JMQXMLMessage
Get the document containing this message's data.
getDouble(String) - Method in interface javax.jms.MapMessage
Returns the double value with the specified name.
getDoubleProperty(String) - Method in interface javax.jms.Message
Returns the value of the double property with the specified name.
getDurableSubscribers(String) - Method in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Return all durable subscribers on a topic
getEnumeration() - Method in interface javax.jms.QueueBrowser
Gets an enumeration for browsing the current queue messages in the order they would be received.
getErrorCode() - Method in class javax.jms.JMSException
Gets the vendor-specific error code.
getErrorCode() - Method in class com.sssw.jms.api.JMQXAException
Get the error code for this exception
getExceptionListener() - Method in interface javax.jms.Connection
Gets the ExceptionListener object for this connection.
getFile() - Method in interface com.sssw.jms.api.JMQFileMessage
Gets the next file in the byte stream.
getFiles() - Method in interface com.sssw.jms.api.JMQFileMessage
Gets all files in the message body.
getFloat(String) - Method in interface javax.jms.MapMessage
Returns the float value with the specified name.
getFloatProperty(String) - Method in interface javax.jms.Message
Returns the value of the float property with the specified name.
getHost() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the (primary) host name of the jBroker MQ Server
getHost() - Method in class com.sssw.jms.api.JMQServerInfo
Return the host encapsulated by this object.
getInt(String) - Method in interface javax.jms.MapMessage
Returns the int value with the specified name.
getIntProperty(String) - Method in interface javax.jms.Message
Returns the value of the int property with the specified name.
getJMSCorrelationID() - Method in interface javax.jms.Message
Gets the correlation ID for the message.
getJMSCorrelationIDAsBytes() - Method in interface javax.jms.Message
Gets the correlation ID as an array of bytes for the message.
getJMSDeliveryMode() - Method in interface javax.jms.Message
Gets the DeliveryMode value specified for this message.
getJMSDestination() - Method in interface javax.jms.Message
Gets the Destination object for this message.
getJMSExpiration() - Method in interface javax.jms.Message
Gets the message's expiration value.
getJMSMajorVersion() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS major version number.
getJMSMessage() - Method in class com.sssw.jms.api.JMQMessageNotDeliveredException
Get the message, which could not be delivered.
getJMSMessageID() - Method in interface javax.jms.Message
Gets the message ID.
getJMSMinorVersion() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS minor version number.
getJMSPriority() - Method in interface javax.jms.Message
Gets the message priority level.
getJMSProviderName() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS provider name.
getJMSRedelivered() - Method in interface javax.jms.Message
Gets an indication of whether this message is being redelivered.
getJMSReplyTo() - Method in interface javax.jms.Message
Gets the Destination object to which a reply to this message should be sent.
getJMSTimestamp() - Method in interface javax.jms.Message
Gets the message timestamp.
getJMSType() - Method in interface javax.jms.Message
Gets the message type identifier supplied by the client when the message was sent.
getJMSVersion() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS API version.
getJMSXPropertyNames() - Method in interface javax.jms.ConnectionMetaData
Gets an enumeration of the JMSX property names.
getLinkedException() - Method in class javax.jms.JMSException
Gets the exception linked to this one.
getLinkedException() - Method in class com.sssw.jms.api.JMQXAException
Get the exception linked to this exception.
getLong(String) - Method in interface javax.jms.MapMessage
Returns the long value with the specified name.
getLongProperty(String) - Method in interface javax.jms.Message
Returns the value of the long property with the specified name.
getManagePermission() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get the permission for managing the jBroker MQ server
getMapNames() - Method in interface javax.jms.MapMessage
Returns an Enumeration of all the names in the MapMessage object.
getMessage() - Method in interface com.sssw.jms.api.JMQSOAPMessage
Gets the SOAP message contained in this message's data.
getMessageListener() - Method in interface javax.jms.Session
Returns the session's distinguished message listener (optional).
getMessageListener() - Method in interface javax.jms.MessageConsumer
Gets the message consumer's MessageListener.
getMessageSelector() - Method in interface javax.jms.QueueBrowser
Gets this queue browser's message selector expression.
getMessageSelector() - Method in interface javax.jms.MessageConsumer
Gets this message consumer's message selector expression.
getMetaData() - Method in interface javax.jms.Connection
Gets the metadata for this connection.
getName() - Method in class com.sssw.jms.api.JMQDestination
Get the name of the destination
getName() - Method in interface com.sssw.jms.api.JMQFileMessage
Get the name of the file last read from the stream.
getName() - Method in class com.sssw.jms.api.admin.JMQSubscriberInfo
Get name of durable subscriber
getNegotiatedCipherSuite() - Method in interface com.sssw.jms.api.JMQConnection
Get the cipher suite negotiated between client and server.
getNoLocal() - Method in interface javax.jms.TopicSubscriber
Gets the NoLocal attribute for this subscriber.
getObject() - Method in interface javax.jms.ObjectMessage
Gets the serializable object containing this message's data.
getObject(String) - Method in interface javax.jms.MapMessage
Returns the value of the object with the specified name.
getObjectProperty(String) - Method in interface javax.jms.Message
Returns the value of the Java object property with the specified name.
getORB() - Method in class com.sssw.jms.api.JMQMessageService
Get the jBroker ORB used by this in-process jBroker MQ server.
getPermission(String) - Method in interface com.sssw.jms.api.security.JMQAclManager
Get a permission for a particular priviledge.
getPort() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the port of the (primary) jBroker MQ Server
getPort() - Method in class com.sssw.jms.api.JMQServerInfo
Return the port encapsulated by this object.
getPrincipal() - Method in interface com.sssw.jms.api.JMQConnection
Get the identity of the client
getPrincipal(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get the principal with the given name.
getPrincipal(String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Get the principal with the given name.
getPriority() - Method in interface javax.jms.MessageProducer
Gets the producer's default priority.
getProducePermission() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get the permission for producing messages
getPropertyNames() - Method in interface javax.jms.Message
Returns an Enumeration of all the property names.
getProtocol() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the protocol used for sending/receiveing messages
getProviderMajorVersion() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS provider major version number.
getProviderMinorVersion() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS provider minor version number.
getProviderVersion() - Method in interface javax.jms.ConnectionMetaData
Gets the JMS provider version.
getQueue() - Method in interface javax.jms.QueueBrowser
Gets the queue associated with this queue browser.
getQueue() - Method in interface javax.jms.QueueReceiver
Gets the Queue associated with this queue receiver.
getQueue() - Method in interface javax.jms.QueueSender
Gets the queue associated with this QueueSender.
getQueue(String) - Static method in class com.sssw.jms.api.JMQQueue
Get a jBroker MQ Queue local object with a given name.
getQueue(String, String) - Static method in class com.sssw.jms.api.JMQQueue
Get a jBroker MQ Queue object with a given name.
getQueueName() - Method in interface javax.jms.Queue
Gets the name of this queue.
getQueueName() - Method in class com.sssw.jms.api.JMQQueue
Get the name of this Queue.
getQueueSession() - Method in interface javax.jms.XAQueueSession
Gets the queue session associated with this XAQueueSession.
getReference() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get a JNDI Reference for this Connection Factory.
getReference() - Method in class com.sssw.jms.api.JMQTopic
Get a JNDI Reference for this Topic.
getReference() - Method in class com.sssw.jms.api.JMQQueue
Get a JNDI Reference for this Queue.
getSecurityAdmin() - Method in interface com.sssw.jms.api.JMQConnection
Get the security administration interface
getSelector() - Method in class com.sssw.jms.api.JMQMessageBean
Returns the selector set on message consumer, or null if no selector was specified.
getServers() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the servers in the cluster for this connection factory.
getServerSession() - Method in interface javax.jms.ServerSessionPool
Return a server session from the pool.
getServerSessionPool() - Method in interface javax.jms.ConnectionConsumer
Gets the server session pool associated with this connection consumer.
getSession() - Method in interface javax.jms.ServerSession
Return the ServerSession's Session.
getSession() - Method in class com.sssw.jms.api.JMQMessageBean
Returns the session created by this message bean.
getShort(String) - Method in interface javax.jms.MapMessage
Returns the short value with the specified name.
getShortProperty(String) - Method in interface javax.jms.Message
Returns the value of the short property with the specified name.
getString(String) - Method in interface javax.jms.MapMessage
Returns the String value with the specified name.
getStringProperty(String) - Method in interface javax.jms.Message
Returns the value of the String property with the specified name.
getText() - Method in interface javax.jms.TextMessage
Gets the string containing this message's data.
getText() - Method in interface com.sssw.jms.api.JMQXMLMessage
Gets the string containing this message's data.
getTimeToLive() - Method in interface javax.jms.MessageProducer
Gets the default length of time in milliseconds from its dispatch time that a produced message should be retained by the message system.
getTopic() - Method in interface javax.jms.TopicSubscriber
Gets the Topic associated with this subscriber.
getTopic() - Method in interface javax.jms.TopicPublisher
Gets the topic associated with this TopicPublisher.
getTopic(String) - Static method in class com.sssw.jms.api.JMQTopic
Construct a jBroker MQ Topic local object with a given name.
getTopicName() - Method in interface javax.jms.Topic
Gets the name of this topic.
getTopicName() - Method in class com.sssw.jms.api.JMQTopic
Get the name of this Topic.
getTopicSession() - Method in interface javax.jms.XATopicSession
Gets the topic session associated with this XATopicSession.
getTransacted() - Method in interface javax.jms.Session
Indicates whether the session is in transacted mode.
getTransacted() - Method in interface javax.jms.XASession
Indicates whether the session is in transacted mode.
getType() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get the connection Type.
getType() - Method in class com.sssw.jms.api.JMQDestination
Get the type of the destination
getXAResource() - Method in interface javax.jms.XASession
Returns an XA resource to the caller.
GROUP_ADMIN - Static variable in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Name of the built-in Group of administrators
GROUP_ADMIN - Static variable in interface com.sssw.jms.api.security.JMQPrincipalManager
Name of the built-in Group of administrators
GROUP_WORLD - Static variable in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Name of the built-in Group containing everyone
GROUP_WORLD - Static variable in interface com.sssw.jms.api.security.JMQPrincipalManager
Name of the built-in Group containing everyone

H

hashCode() - Method in class com.sssw.jms.api.admin.JMQSubscriberInfo
 

I

IIOP_PROTOCOL - Static variable in class com.sssw.jms.api.JMQConnectionFactory
The IIOP protocol supported by jBroker MQ
IIOP_SSL_PROTOCOL - Static variable in class com.sssw.jms.api.JMQConnectionFactory
The IIOP/SSL protocol supported by jBroker MQ
IllegalStateException - exception javax.jms.IllegalStateException.
This exception is thrown when a method is invoked at an illegal or inappropriate time or if the provider is not in an appropriate state for the requested operation.
IllegalStateException(String) - Constructor for class javax.jms.IllegalStateException
Constructs an IllegalStateException with the specified reason.
IllegalStateException(String, String) - Constructor for class javax.jms.IllegalStateException
Constructs an IllegalStateException with the specified reason and error code.
INDIVIDUAL_ACKNOWLEDGE - Static variable in interface com.sssw.jms.api.JMQSession
With this acknowledgement mode, the client acknowledges a message by calling a message's acknowledge method.
init(ORB, Properties) - Static method in class com.sssw.jms.api.JMQMessageService
Create an in-process instance of the jBroker MQ Java Messaging Service.
init(Properties) - Static method in class com.sssw.jms.api.JMQDatabase
Instantiate an instance of the Database controller.
init(Properties) - Static method in class com.sssw.jms.api.JMQMessageService
Create an in-process instance of the jBroker MQ Java Messaging Service.
InvalidClientIDException - exception javax.jms.InvalidClientIDException.
This exception must be thrown when a client attempts to set a connection's client ID to a value that is rejected by a provider.
InvalidClientIDException(String) - Constructor for class javax.jms.InvalidClientIDException
Constructs an InvalidClientIDException with the specified reason.
InvalidClientIDException(String, String) - Constructor for class javax.jms.InvalidClientIDException
Constructs an InvalidClientIDException with the specified reason and error code.
InvalidDestinationException - exception javax.jms.InvalidDestinationException.
This exception must be thrown when a destination either is not understood by a provider or is no longer valid.
InvalidDestinationException(String) - Constructor for class javax.jms.InvalidDestinationException
Constructs an InvalidDestinationException with the specified reason.
InvalidDestinationException(String, String) - Constructor for class javax.jms.InvalidDestinationException
Constructs an InvalidDestinationException with the specified reason and error code.
InvalidSelectorException - exception javax.jms.InvalidSelectorException.
This exception must be thrown when a JMS client attempts to give a provider a message selector with invalid syntax.
InvalidSelectorException(String) - Constructor for class javax.jms.InvalidSelectorException
Constructs an InvalidSelectorException with the specified reason.
InvalidSelectorException(String, String) - Constructor for class javax.jms.InvalidSelectorException
Constructs an InvalidSelectorException with the specified reason and error code.
isClientPull() - Method in class com.sssw.jms.api.JMQConnectionFactory
Get whether or not this connection factory will create connections that use pull mode when retrieving messages from the jBroker MQ server.
isGroup(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Determine if the given principal is a Group
isGroup(String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Determine if the given principal is a Group
itemExists(String) - Method in interface javax.jms.MapMessage
Indicates whether an item exists in this MapMessage object.

J

javax.jms - package javax.jms
Java Message Service 1.0.2b API.
JMQAclManager - interface com.sssw.jms.api.security.JMQAclManager.
Interface for pluggable access control management in jBroker MQ.
JMQAdministeredObject - class com.sssw.jms.api.JMQAdministeredObject.
JMS administered objects are local Java objects containing JMS configuration information that are created by a JMS administrator and later used by JMS clients.
JMQAdministeredObject() - Constructor for class com.sssw.jms.api.JMQAdministeredObject
 
JMQConnection - interface com.sssw.jms.api.JMQConnection.
The base class for jBroker MQ connections.
JMQConnectionFactory - class com.sssw.jms.api.JMQConnectionFactory.
Factory for creating JMS connections in JBroker MQ.
JMQConnectionLostException - exception com.sssw.jms.api.JMQConnectionLostException.
This exception is raised when a client looses the connection to its JMS server(s).
JMQConnectionLostException(String) - Constructor for class com.sssw.jms.api.JMQConnectionLostException
Construct a JMQConnectionLostException with reason and with error code defaulting to null.
JMQConnectionLostException(String, String) - Constructor for class com.sssw.jms.api.JMQConnectionLostException
Construct a JMQConnectionLostException with reason and errorCode for exception.
JMQDatabase - class com.sssw.jms.api.JMQDatabase.
Create an in-process jBroker MQ database controller.
JMQDatabase() - Constructor for class com.sssw.jms.api.JMQDatabase
 
JMQDestination - class com.sssw.jms.api.JMQDestination.
The jBroker MQ Destination.
JMQDestinationAdmin - interface com.sssw.jms.api.admin.JMQDestinationAdmin.
Interface for managing jBroker MQ destinations.
JMQFileMessage - interface com.sssw.jms.api.JMQFileMessage.
A JMQFileMessage object is used to send a message containing one or more files (java.io.File objects).
JMQMessageBean - class com.sssw.jms.api.JMQMessageBean.
A jBroker MQ utility class for easy creation of message consumers.
JMQMessageBean(Connection, Destination) - Constructor for class com.sssw.jms.api.JMQMessageBean
This constructor creates a message bean, which is connected to destination: If destination is a queue, the constructor creates a queue connection, a queue session, and a queue receiver on which this object is set as the message listener.
JMQMessageBean(Connection, Destination, String) - Constructor for class com.sssw.jms.api.JMQMessageBean
This constructor creates a message bean, which is connected to destination: If destination is a queue, the constructor creates a queue connection, a queue session, and a queue receiver on which this object is set as the message listener.
JMQMessageBean(ConnectionFactory, Destination) - Constructor for class com.sssw.jms.api.JMQMessageBean
This constructor creates a message bean, which is connected to destination: If destination is a queue, the constructor creates a queue connection, a queue session, and a queue receiver on which this object is set as the message listener.
JMQMessageBean(ConnectionFactory, Destination, String) - Constructor for class com.sssw.jms.api.JMQMessageBean
This constructor creates a message bean, which is connected to destination: If destination is a queue, the constructor creates a queue connection, a queue session, and a queue receiver on which this object is set as the message listener.
JMQMessageNotDeliveredException - exception com.sssw.jms.api.JMQMessageNotDeliveredException.
This exception is raised if a MessageListener's onMessage method continously raises an un-checked exception.
JMQMessageNotDeliveredException(String, Message) - Constructor for class com.sssw.jms.api.JMQMessageNotDeliveredException
Construct a JMQMessageNotDeliveredException with reason and with error code defaulting to null.
JMQMessageNotDeliveredException(String, String, Message) - Constructor for class com.sssw.jms.api.JMQMessageNotDeliveredException
Construct a JMQMessageNotDeliveredException with reason and errorCode for exception.
JMQMessageService - class com.sssw.jms.api.JMQMessageService.
A class for creating an in-process jBroker MQ Java Message Service.
JMQMessageService() - Constructor for class com.sssw.jms.api.JMQMessageService
 
JMQPrincipalManager - interface com.sssw.jms.api.security.JMQPrincipalManager.
Interface for pluggable principal management in jBroker MQ.
JMQQueue - class com.sssw.jms.api.JMQQueue.
A JBroker MQ Queue object encapsulates a queue name.
JMQQueueConnection - interface com.sssw.jms.api.JMQQueueConnection.
jBroker MQ queue connection.
JMQQueueConnectionFactory - class com.sssw.jms.api.JMQQueueConnectionFactory.
A client uses a JMQQueueConnectionFactory to create JMQQueueConnection's.
JMQQueueConnectionFactory() - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory.
JMQQueueConnectionFactory(String) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol.
JMQQueueConnectionFactory(String, String) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol, and client Id.
JMQQueueConnectionFactory(String, String, String) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol, server hostname, and client id.
JMQQueueConnectionFactory(String, String, String, int) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol, server hostname, server port, client id.
JMQQueueConnectionFactory(String, String, String, int, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol, cluster information, and client id.
JMQQueueConnectionFactory(String, String, String, int, String, String) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol, server hostname, server port, client id, username, and password.
JMQQueueConnectionFactory(String, String, String, int, String, String, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQQueueConnectionFactory
Construct a JMQQueueConnectionFactory with a given protocol, cluster information, and client id.
JMQQueueRequestor - class com.sssw.jms.api.JMQQueueRequestor.
The JMQQueueRequestor helper class simplifies making service requests.
JMQQueueRequestor(QueueSession, Queue) - Constructor for class com.sssw.jms.api.JMQQueueRequestor
Constructor for the QueueRequestor class.
JMQSecurityAdmin - interface com.sssw.jms.api.admin.JMQSecurityAdmin.
Interface for managing security for jBroker MQ.
JMQServerInfo - class com.sssw.jms.api.JMQServerInfo.
A JMQServerInfo object encapsulates host and port information about a jBroker MQ server.
JMQServerInfo(String, int) - Constructor for class com.sssw.jms.api.JMQServerInfo
Construct a JMQServerInfo object with host and port information.
JMQSession - interface com.sssw.jms.api.JMQSession.
A JMQSession defines additional message acknowledgement modes and supports a factory method for creating XML and SOAP messages.
JMQSOAPMessage - interface com.sssw.jms.api.JMQSOAPMessage.
A JMQSOAPMessage object is used to send a message containing a javax.xml.soap.SOAPMessage.
JMQSubscriberInfo - class com.sssw.jms.api.admin.JMQSubscriberInfo.
Data structure that contains a durable subscriber name and the client identifier of the connection it is assoaciated with.
JMQSubscriberInfo(String, String) - Constructor for class com.sssw.jms.api.admin.JMQSubscriberInfo
Construct a JMQSubscriberInfo data structure.
JMQTopic - class com.sssw.jms.api.JMQTopic.
A JBroker MQ Topic object encapsulates a topic name.
JMQTopicConnection - interface com.sssw.jms.api.JMQTopicConnection.
jBroker MQ topic connection.
JMQTopicConnectionFactory - class com.sssw.jms.api.JMQTopicConnectionFactory.
A client uses a JMQTopicConnectionFactory to create JMQTopicConnection's.
JMQTopicConnectionFactory() - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory.
JMQTopicConnectionFactory(String) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol.
JMQTopicConnectionFactory(String, String) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol, and client Id.
JMQTopicConnectionFactory(String, String, String) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol, server hostname, and client id.
JMQTopicConnectionFactory(String, String, String, int) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol, server hostname, server port, client id.
JMQTopicConnectionFactory(String, String, String, int, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol, cluster information, and client id.
JMQTopicConnectionFactory(String, String, String, int, String, String) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol, server hostname, server port, client id, username, and password.
JMQTopicConnectionFactory(String, String, String, int, String, String, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQTopicConnectionFactory
Construct a JMQTopicConnectionFactory with a given protocol, cluster information, and client id.
JMQTopicRequestor - class com.sssw.jms.api.JMQTopicRequestor.
The JMQTopicRequestor helper class simplifies making service requests.
JMQTopicRequestor(TopicSession, Topic) - Constructor for class com.sssw.jms.api.JMQTopicRequestor
Constructor for the TopicRequestor class.
JMQXAException - exception com.sssw.jms.api.JMQXAException.
This exception extends javax.transaction.xa.XAException to provide additional information about an XA exception.
JMQXAException(Exception) - Constructor for class com.sssw.jms.api.JMQXAException
Construct a new JMQXAException object.
JMQXAException(int) - Constructor for class com.sssw.jms.api.JMQXAException
Construct a new JMQXAException object.
JMQXAException(String) - Constructor for class com.sssw.jms.api.JMQXAException
Construct a new JMQXAException object.
JMQXAQueueConnection - interface com.sssw.jms.api.JMQXAQueueConnection.
jBroker MQ XA queue connection.
JMQXAQueueConnectionFactory - class com.sssw.jms.api.JMQXAQueueConnectionFactory.
A client uses a JMQXAQueueConnectionFactory to create JMQXAQueueConnection's.
JMQXAQueueConnectionFactory() - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory.
JMQXAQueueConnectionFactory(String) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol.
JMQXAQueueConnectionFactory(String, String) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol, and client Id.
JMQXAQueueConnectionFactory(String, String, String) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol, server hostname, and client id.
JMQXAQueueConnectionFactory(String, String, String, int) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol, server hostname, server port, client id.
JMQXAQueueConnectionFactory(String, String, String, int, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol, cluster information, and client id.
JMQXAQueueConnectionFactory(String, String, String, int, String, String) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol, server hostname, server port, client id, username, and password.
JMQXAQueueConnectionFactory(String, String, String, int, String, String, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQXAQueueConnectionFactory
Construct a JMQXAQueueConnectionFactory with a given protocol, cluster information, and client id.
JMQXATopicConnection - interface com.sssw.jms.api.JMQXATopicConnection.
jBroker MQ XA topic connection.
JMQXATopicConnectionFactory - class com.sssw.jms.api.JMQXATopicConnectionFactory.
A client uses a JMQXATopicConnectionFactory to create JMQXATopicConnection's.
JMQXATopicConnectionFactory() - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory.
JMQXATopicConnectionFactory(String) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol.
JMQXATopicConnectionFactory(String, String) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol, and client Id.
JMQXATopicConnectionFactory(String, String, String) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol, server hostname, and client id.
JMQXATopicConnectionFactory(String, String, String, int) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol, server hostname, server port, client id.
JMQXATopicConnectionFactory(String, String, String, int, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol, cluster information, and client id.
JMQXATopicConnectionFactory(String, String, String, int, String, String) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol, server hostname, server port, client id, username, and password.
JMQXATopicConnectionFactory(String, String, String, int, String, String, JMQServerInfo[]) - Constructor for class com.sssw.jms.api.JMQXATopicConnectionFactory
Construct a JMQXATopicConnectionFactory with a given protocol, cluster information, and client id.
JMQXMLMessage - interface com.sssw.jms.api.JMQXMLMessage.
A JMQXMLMessage object is used to send a message containing a org.w3c.dom.Document.
JMSException - exception javax.jms.JMSException.
This is the root class of all JMS API exceptions.
JMSException(String) - Constructor for class javax.jms.JMSException
Constructs a JMSException with the specified reason and with the error code defaulting to null.
JMSException(String, String) - Constructor for class javax.jms.JMSException
Constructs a JMSException with the specified reason and error code.
JMSSecurityException - exception javax.jms.JMSSecurityException.
This exception must be thrown when a provider rejects a user name/password submitted by a client.
JMSSecurityException(String) - Constructor for class javax.jms.JMSSecurityException
Constructs a JMSSecurityException with the specified reason.
JMSSecurityException(String, String) - Constructor for class javax.jms.JMSSecurityException
Constructs a JMSSecurityException with the specified reason and error code.

L

listAllGroups() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
List the names of all the Groups
listAllGroups() - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
List the names of all the Groups
listAllUsers() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
List all the users
listAllUsers() - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
List all the users
listGroupMembers(String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
List all the Group member names
listGroupMembers(String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
List all the Group member names

M

MANAGE_PERMISSION - Static variable in interface com.sssw.jms.api.security.JMQAclManager
String constant for MANAGE permission.
MapMessage - interface javax.jms.MapMessage.
A MapMessage object is used to send a set of name-value pairs.
MAX_CONSUMER_NUM - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Maximum number of consumers that can be concurrently connected to this destination.
MAX_MSG_SIZE - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Maximum size (in bytes) of the Message that can be produced to this destination.
MAX_UNCONSUMED_MSGBYTES - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Maximum unconsumed message bytes.
MAX_UNCONSUMED_MSGNUM - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Maximum number of unconsumed messages.
Message - interface javax.jms.Message.
The Message interface is the root interface of all JMS messages.
MESSAGE_EXPIRATION - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
This property sets the expiration value for all messages that pass through this destination.
MessageConsumer - interface javax.jms.MessageConsumer.
A client uses a MessageConsumer object to receive messages from a destination.
MessageEOFException - exception javax.jms.MessageEOFException.
This exception must be thrown when an unexpected end of stream has been reached when a StreamMessage or BytesMessage is being read.
MessageEOFException(String) - Constructor for class javax.jms.MessageEOFException
Constructs a MessageEOFException with the specified reason.
MessageEOFException(String, String) - Constructor for class javax.jms.MessageEOFException
Constructs a MessageEOFException with the specified reason and error code.
MessageFormatException - exception javax.jms.MessageFormatException.
This exception must be thrown when a JMS client attempts to use a data type not supported by a message or attempts to read data in a message as the wrong type.
MessageFormatException(String) - Constructor for class javax.jms.MessageFormatException
Constructs a MessageFormatException with the specified reason.
MessageFormatException(String, String) - Constructor for class javax.jms.MessageFormatException
Constructs a MessageFormatException with the specified reason and error code.
MessageListener - interface javax.jms.MessageListener.
A MessageListener object is used to receive asynchronously delivered messages.
MessageNotReadableException - exception javax.jms.MessageNotReadableException.
This exception must be thrown when a JMS client attempts to read a write-only message.
MessageNotReadableException(String) - Constructor for class javax.jms.MessageNotReadableException
Constructs a MessageNotReadableException with the specified reason.
MessageNotReadableException(String, String) - Constructor for class javax.jms.MessageNotReadableException
Constructs a MessageNotReadableException with the specified reason and error code.
MessageNotWriteableException - exception javax.jms.MessageNotWriteableException.
This exception must be thrown when a JMS client attempts to write to a read-only message.
MessageNotWriteableException(String) - Constructor for class javax.jms.MessageNotWriteableException
Constructs a MessageNotWriteableException with the specified reason.
MessageNotWriteableException(String, String) - Constructor for class javax.jms.MessageNotWriteableException
Constructs a MessageNotWriteableException with the specified reason and error code.
MessageProducer - interface javax.jms.MessageProducer.
A client uses a MessageProducer object to send messages to a destination.
MSGSVC_CLUSTER_IDENTIFICATION - Static variable in class com.sssw.jms.api.JMQMessageService
Indication of whether to use IP addresses or host names to identify cluster members.
MSGSVC_CLUSTER_MEMBERS - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of cluster member URL's.
MSGSVC_CLUSTER_TOPICS - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of topics to forward messages for.
MSGSVC_DEBUG - Static variable in class com.sssw.jms.api.JMQMessageService
A boolean property that detemines whether or not the jBroker MQ server will run in debug mode.
MSGSVC_ENABLE_NAMING - Static variable in class com.sssw.jms.api.JMQMessageService
Boolean property to disable jBroker MQ from exposing a name service.
MSGSVC_ENABLE_SECURITY - Static variable in class com.sssw.jms.api.JMQMessageService
Boolean property to enable jBroker MQ security.
MSGSVC_ENABLE_SSL - Static variable in class com.sssw.jms.api.JMQMessageService
Boolean property to enable jBroker MQ to support SSL.
MSGSVC_ERROR_QUEUE - Static variable in class com.sssw.jms.api.JMQMessageService
The queue for error messages.
MSGSVC_JDBC_DRIVER - Static variable in class com.sssw.jms.api.JMQMessageService
The class name of the JDBC Driver.
MSGSVC_JDBC_MAXMSGSIZE - Static variable in class com.sssw.jms.api.JMQMessageService
The maximum message size.
MSGSVC_JDBC_MAXPOOLSIZE - Static variable in class com.sssw.jms.api.JMQMessageService
The maximum connection pool size for the database.
MSGSVC_JDBC_MINPOOLSIZE - Static variable in class com.sssw.jms.api.JMQMessageService
The minimum connection pool size for the database.
MSGSVC_JDBC_PASSWORD - Static variable in class com.sssw.jms.api.JMQMessageService
The password for the database user.
MSGSVC_JDBC_URL - Static variable in class com.sssw.jms.api.JMQMessageService
The database URL to use for the jBroker MQ tables.
MSGSVC_JDBC_USER - Static variable in class com.sssw.jms.api.JMQMessageService
The database username to use to access the jBroker MQ tables.
MSGSVC_LOGDIR - Static variable in class com.sssw.jms.api.JMQMessageService
The directory where the JMS error logs are kept.
MSGSVC_MEMORY - Static variable in class com.sssw.jms.api.JMQMessageService
The maximum memory size used for messages in the jBroker MQ server.
MSGSVC_NAME - Static variable in class com.sssw.jms.api.JMQMessageService
The unique name of the message service.
MSGSVC_PORT - Static variable in class com.sssw.jms.api.JMQMessageService
The IIOP port on which the message service starts up.
MSGSVC_PROPFILE - Static variable in class com.sssw.jms.api.JMQMessageService
Messaging service properties filename.
MSGSVC_QUEUE_FACTORY - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of queue connection factories.
MSGSVC_QUEUE_XA_FACTORY - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of XA queue connection factories.
MSGSVC_ROUTER_TARGETS - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of router URL's.
MSGSVC_ROUTER_TOPICS - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of topics to route messages for.
MSGSVC_SECURITY_AUTHORIZATION - Static variable in class com.sssw.jms.api.JMQMessageService
The fully classified name of the access control list class.
MSGSVC_SECURITY_MANAGER - Static variable in class com.sssw.jms.api.JMQMessageService
The fully classified name of the principal manager class.
MSGSVC_SECURITY_REALM - Static variable in class com.sssw.jms.api.JMQMessageService
The fully classified name of the authentication class.
MSGSVC_SSL_CERTIFICATE - Static variable in class com.sssw.jms.api.JMQMessageService
Directory with the jBroker MQ server's SSL information.
MSGSVC_SSL_CIPHER_SUITES - Static variable in class com.sssw.jms.api.JMQMessageService
A list of cipher suites supported.
MSGSVC_SSL_CLIENT_CERTIFICATE - Static variable in class com.sssw.jms.api.JMQMessageService
Boolean property to decide whether an SSL enabled jBroker MQ server requires client applications to present it with a certificate.
MSGSVC_SSL_PASSWORD - Static variable in class com.sssw.jms.api.JMQMessageService
The password to decrypt the private key.
MSGSVC_STORE - Static variable in class com.sssw.jms.api.JMQMessageService
The name of the persistent store to use.
MSGSVC_STORE_DIR - Static variable in class com.sssw.jms.api.JMQMessageService
The root directory for a file based message store.
MSGSVC_STORE_SYNC - Static variable in class com.sssw.jms.api.JMQMessageService
A boolean property that detemines whether or not jBroker MQ will sync file descriptors when writing messages into the file store.
MSGSVC_THREADSMAX - Static variable in class com.sssw.jms.api.JMQMessageService
The maximum size of the thread pool.
MSGSVC_TOPIC_FACTORY - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of topic connection factories.
MSGSVC_TOPIC_XA_FACTORY - Static variable in class com.sssw.jms.api.JMQMessageService
A comma separated list of XA topic connection factories.
MSGSVC_VERBOSE - Static variable in class com.sssw.jms.api.JMQMessageService
A boolean property that detemines whether or not the jBroker MQ server will run in verbose mode.

N

newAcl() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get a new blank ACL
newAcl() - Method in interface com.sssw.jms.api.security.JMQAclManager
Get a new blank ACL
newAclEntry() - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Get a new blank AclEntry object
newAclEntry() - Method in interface com.sssw.jms.api.security.JMQAclManager
Get a new blank AclEntry object
NON_PERSISTENT - Static variable in interface javax.jms.DeliveryMode
This is the lowest-overhead delivery mode because it does not require that the message be logged to stable storage.

O

ObjectMessage - interface javax.jms.ObjectMessage.
An ObjectMessage object is used to send a message that contains a serializable object in the Java programming language ("Java object").
onException(JMSException) - Method in interface javax.jms.ExceptionListener
Notifies user of a JMS exception.
onMessage(Message) - Method in interface javax.jms.MessageListener
Passes a message to the listener.

P

PERSISTENT - Static variable in interface javax.jms.DeliveryMode
This delivery mode instructs the JMS provider to log the message to stable storage as part of the client's send operation.
PRODUCE_PERMISSION - Static variable in interface com.sssw.jms.api.security.JMQAclManager
String constant for PRODUCE permission.
propertyExists(String) - Method in interface javax.jms.Message
Indicates whether a property value exists.
publish(Message) - Method in interface javax.jms.TopicPublisher
Publishes a message to the topic.
publish(Message, int, int, long) - Method in interface javax.jms.TopicPublisher
Publishes a message to the topic, specifying delivery mode, priority, and time to live.
publish(Topic, Message) - Method in interface javax.jms.TopicPublisher
Publishes a message to a topic for an unidentified message producer.
publish(Topic, Message, int, int, long) - Method in interface javax.jms.TopicPublisher
Publishes a message to a topic for an unidentified message producer, specifying delivery mode, priority and time to live.

Q

Queue - interface javax.jms.Queue.
A Queue object encapsulates a provider-specific queue name.
QUEUE - Static variable in class com.sssw.jms.api.JMQConnectionFactory
Queue Connection.
QUEUE - Static variable in class com.sssw.jms.api.JMQDestination
Queue Destination.
QueueBrowser - interface javax.jms.QueueBrowser.
A client uses a QueueBrowser object to look at messages on a queue without removing them.
QueueConnection - interface javax.jms.QueueConnection.
A QueueConnection object is an active connection to a point-to-point JMS provider.
QueueConnectionFactory - interface javax.jms.QueueConnectionFactory.
A client uses a QueueConnectionFactory object to create QueueConnection objects with a point-to-point JMS provider.
QueueReceiver - interface javax.jms.QueueReceiver.
A client uses a QueueReceiver object to receive messages that have been delivered to a queue.
QueueRequestor - class javax.jms.QueueRequestor.
The QueueRequestor helper class simplifies making service requests.
QueueRequestor(QueueSession, Queue) - Constructor for class javax.jms.QueueRequestor
Constructor for the QueueRequestor class.
QueueSender - interface javax.jms.QueueSender.
A client uses a QueueSender object to send messages to a queue.
QueueSession - interface javax.jms.QueueSession.
A QueueSession object provides methods for creating QueueReceiver, QueueSender, QueueBrowser, and TemporaryQueue objects.

R

readBoolean() - Method in interface javax.jms.BytesMessage
Reads a boolean from the bytes message stream.
readBoolean() - Method in interface javax.jms.StreamMessage
Reads a boolean from the stream message.
readByte() - Method in interface javax.jms.BytesMessage
Reads a signed 8-bit value from the bytes message stream.
readByte() - Method in interface javax.jms.StreamMessage
Reads a byte value from the stream message.
readBytes(byte[]) - Method in interface javax.jms.BytesMessage
Reads a byte array from the bytes message stream.
readBytes(byte[]) - Method in interface javax.jms.StreamMessage
Reads a byte array field from the stream message into the specified byte[] object (the read buffer).
readBytes(byte[], int) - Method in interface javax.jms.BytesMessage
Reads a portion of the bytes message stream.
readChar() - Method in interface javax.jms.BytesMessage
Reads a Unicode character value from the bytes message stream.
readChar() - Method in interface javax.jms.StreamMessage
Reads a Unicode character value from the stream message.
readDouble() - Method in interface javax.jms.BytesMessage
Reads a double from the bytes message stream.
readDouble() - Method in interface javax.jms.StreamMessage
Reads a double from the stream message.
readFloat() - Method in interface javax.jms.BytesMessage
Reads a float from the bytes message stream.
readFloat() - Method in interface javax.jms.StreamMessage
Reads a float from the stream message.
readInt() - Method in interface javax.jms.BytesMessage
Reads a signed 32-bit integer from the bytes message stream.
readInt() - Method in interface javax.jms.StreamMessage
Reads a 32-bit integer from the stream message.
readLong() - Method in interface javax.jms.BytesMessage
Reads a signed 64-bit integer from the bytes message stream.
readLong() - Method in interface javax.jms.StreamMessage
Reads a 64-bit integer from the stream message.
readObject() - Method in interface javax.jms.StreamMessage
Reads an object from the stream message.
readShort() - Method in interface javax.jms.BytesMessage
Reads a signed 16-bit number from the bytes message stream.
readShort() - Method in interface javax.jms.StreamMessage
Reads a 16-bit integer from the stream message.
readString() - Method in interface javax.jms.StreamMessage
Reads a String from the stream message.
readUnsignedByte() - Method in interface javax.jms.BytesMessage
Reads an unsigned 8-bit number from the bytes message stream.
readUnsignedShort() - Method in interface javax.jms.BytesMessage
Reads an unsigned 16-bit number from the bytes message stream.
readUTF() - Method in interface javax.jms.BytesMessage
Reads a string that has been encoded using a modified UTF-8 format from the bytes message stream.
RECEIVE_ENABLED - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
This property determines whether or not messages will be delivered from a particular destination.
receive() - Method in interface javax.jms.MessageConsumer
Receives the next message produced for this message consumer.
receive(long) - Method in interface javax.jms.MessageConsumer
Receives the next message that arrives within the specified timeout interval.
receiveNoWait() - Method in interface javax.jms.MessageConsumer
Receives the next message if one is immediately available.
recover() - Method in interface javax.jms.Session
Stops message delivery in this session, and restarts message delivery with the oldest unacknowledged message.
removePrincipalFromGroup(String, String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Remove a principal from the group.
removePrincipalFromGroup(String, String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Remove a principal from the group.
request(Message) - Method in class javax.jms.QueueRequestor
Sends a request and waits for a reply.
request(Message) - Method in class javax.jms.TopicRequestor
Sends a request and waits for a reply.
request(Message) - Method in class com.sssw.jms.api.JMQQueueRequestor
Sends a request and waits for a reply.
request(Message) - Method in class com.sssw.jms.api.JMQTopicRequestor
Sends a request and waits for a reply.
request(Message, long) - Method in class com.sssw.jms.api.JMQQueueRequestor
Sends a request and waits for a reply with timeout.
request(Message, long) - Method in class com.sssw.jms.api.JMQTopicRequestor
Sends a request and waits for a reply with timeout.
reset() - Method in interface javax.jms.BytesMessage
Puts the message body in read-only mode and repositions the stream of bytes to the beginning.
reset() - Method in interface javax.jms.StreamMessage
Puts the message body in read-only mode and repositions the stream to the beginning.
ResourceAllocationException - exception javax.jms.ResourceAllocationException.
This exception is thrown when a provider is unable to allocate the resources required by a method.
ResourceAllocationException(String) - Constructor for class javax.jms.ResourceAllocationException
Constructs a ResourceAllocationException with the specified reason.
ResourceAllocationException(String, String) - Constructor for class javax.jms.ResourceAllocationException
Constructs a ResourceAllocationException with the specified reason and error code.
rollback() - Method in interface javax.jms.Session
Rolls back any messages done in this transaction and releases any locks currently held.
rollback() - Method in interface javax.jms.XASession
Throws a TransactionInProgressException, since it should not be called for an XASession object.
run() - Method in interface javax.jms.Session
Optional operation, intended to be used only by Application Servers, not by ordinary JMS clients.
run() - Method in class com.sssw.jms.api.JMQMessageBean
Block until the calling thread is interrupted.

S

save(File) - Method in interface com.sssw.jms.api.JMQFileMessage
Save the next file in the byte stream to the specified file.
save(String) - Method in interface com.sssw.jms.api.JMQFileMessage
Convenience method for saving the next file in the byte stream.
SEND_ENABLED - Static variable in interface com.sssw.jms.api.admin.JMQDestinationAdmin
This property determines whether or not messages can be sent to a particular destination.
send(Message) - Method in interface javax.jms.QueueSender
Sends a message to the queue.
send(Message, int, int, long) - Method in interface javax.jms.QueueSender
Sends a message to the queue, specifying delivery mode, priority, and time to live.
send(Queue, Message) - Method in interface javax.jms.QueueSender
Sends a message to a queue for an unidentified message producer.
send(Queue, Message, int, int, long) - Method in interface javax.jms.QueueSender
Sends a message to a queue for an unidentified message producer, specifying delivery mode, priority and time to live.
ServerSession - interface javax.jms.ServerSession.
A ServerSession object is an application server object that is used by a server to associate a thread with a JMS session (optional).
ServerSessionPool - interface javax.jms.ServerSessionPool.
A ServerSessionPool object is an object implemented by an application server to provide a pool of ServerSession objects for processing the messages of a ConnectionConsumer (optional).
Session - interface javax.jms.Session.
A Session object is a single-threaded context for producing and consuming messages.
setBoolean(String, boolean) - Method in interface javax.jms.MapMessage
Sets a boolean value with the specified name into the Map.
setBooleanProperty(String, boolean) - Method in interface javax.jms.Message
Sets a boolean property value with the specified name into the message.
setBrokerName(String) - Method in class com.sssw.jms.api.JMQQueue
Set the broker name where this Queue resides.
setByte(String, byte) - Method in interface javax.jms.MapMessage
Sets a byte value with the specified name into the Map.
setByteProperty(String, byte) - Method in interface javax.jms.Message
Sets a byte property value with the specified name into the message.
setBytes(String, byte[]) - Method in interface javax.jms.MapMessage
Sets a byte array value with the specified name into the Map.
setBytes(String, byte[], int, int) - Method in interface javax.jms.MapMessage
Sets a portion of the byte array value with the specified name into the Map.
setCertificateChain(byte[][], byte[]) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the SSL certificate chain for clients using this connection factory.
setCertificateChain(byte[][], byte[], String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the SSL certificate chain for clients using this connection factory.
setChar(String, char) - Method in interface javax.jms.MapMessage
Sets a Unicode character value with the specified name into the Map.
setCipherSuites(CipherSuite[]) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the SSL cipher suites that client connections should support.
setClientId(String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the JMS Client ID
setClientID(String) - Method in interface javax.jms.Connection
Sets the client identifier for this connection.
setClientPull(boolean) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set whether or not this connection factory will create connections that use pull mode when retrieving messages from the jBroker MQ server.
setDefaultPassword(String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the default password
setDefaultUserName(String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the default username
setDeliveryMode(int) - Method in interface javax.jms.MessageProducer
Sets the producer's default delivery mode.
setDestinationProperties(String, int, Properties) - Method in interface com.sssw.jms.api.admin.JMQDestinationAdmin
Set destination (queue or topic) properties
setDisableMessageID(boolean) - Method in interface javax.jms.MessageProducer
Sets whether message IDs are disabled.
setDisableMessageTimestamp(boolean) - Method in interface javax.jms.MessageProducer
Sets whether message timestamps are disabled.
setDocument(Document) - Method in interface com.sssw.jms.api.JMQXMLMessage
Set document as this message's data.
setDouble(String, double) - Method in interface javax.jms.MapMessage
Sets a double value with the specified name into the Map.
setDoubleProperty(String, double) - Method in interface javax.jms.Message
Sets a double property value with the specified name into the message.
setExceptionListener(ExceptionListener) - Method in interface javax.jms.Connection
Sets an exception listener for this connection.
setFile(File) - Method in interface com.sssw.jms.api.JMQFileMessage
Sets the specified file as the body of this message.
setFile(String) - Method in interface com.sssw.jms.api.JMQFileMessage
Convenience method for setting file using string argument.
setFiles(File[]) - Method in interface com.sssw.jms.api.JMQFileMessage
Sets the specified files as the body of this message.
setFiles(String[]) - Method in interface com.sssw.jms.api.JMQFileMessage
Convenience method for setting file using string argument.
setFloat(String, float) - Method in interface javax.jms.MapMessage
Sets a float value with the specified name into the Map.
setFloatProperty(String, float) - Method in interface javax.jms.Message
Sets a float property value with the specified name into the message.
setHost(String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the primary host name of the jBroker MQ Server.
setInt(String, int) - Method in interface javax.jms.MapMessage
Sets an int value with the specified name into the Map.
setIntProperty(String, int) - Method in interface javax.jms.Message
Sets an int property value with the specified name into the message.
setJMSCorrelationID(String) - Method in interface javax.jms.Message
Sets the correlation ID for the message.
setJMSCorrelationIDAsBytes(byte[]) - Method in interface javax.jms.Message
Sets the correlation ID as an array of bytes for the message.
setJMSDeliveryMode(int) - Method in interface javax.jms.Message
Sets the DeliveryMode value for this message.
setJMSDestination(Destination) - Method in interface javax.jms.Message
Sets the Destination object for this message.
setJMSExpiration(long) - Method in interface javax.jms.Message
Sets the message's expiration value.
setJMSMessageID(String) - Method in interface javax.jms.Message
Sets the message ID.
setJMSPriority(int) - Method in interface javax.jms.Message
Sets the priority level for this message.
setJMSRedelivered(boolean) - Method in interface javax.jms.Message
Specifies whether this message is being redelivered.
setJMSReplyTo(Destination) - Method in interface javax.jms.Message
Sets the Destination object to which a reply to this message should be sent.
setJMSTimestamp(long) - Method in interface javax.jms.Message
Sets the message timestamp.
setJMSType(String) - Method in interface javax.jms.Message
Sets the message type.
setLinkedException(Exception) - Method in class javax.jms.JMSException
Adds a linked Exception.
setLinkedException(Exception) - Method in class com.sssw.jms.api.JMQXAException
Set the exception linked to this exception.
setLong(String, long) - Method in interface javax.jms.MapMessage
Sets a long value with the specified name into the Map.
setLongProperty(String, long) - Method in interface javax.jms.Message
Sets a long property value with the specified name into the message.
setMessage(SOAPMessage) - Method in interface com.sssw.jms.api.JMQSOAPMessage
Sets message as this message's data.
setMessageListener(MessageListener) - Method in interface javax.jms.Session
Sets the session's distinguished message listener (optional).
setMessageListener(MessageListener) - Method in interface javax.jms.MessageConsumer
Sets the message consumer's MessageListener.
setObject(Serializable) - Method in interface javax.jms.ObjectMessage
Sets the serializable object containing this message's data.
setObject(String, Object) - Method in interface javax.jms.MapMessage
Sets an object value with the specified name into the Map.
setObjectProperty(String, Object) - Method in interface javax.jms.Message
Sets a Java object property value with the specified name into the message.
setPort(int) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the port of the (primary) jBroker MQ Server
setPriority(int) - Method in interface javax.jms.MessageProducer
Sets the producer's default priority.
setProtocol(String) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the protocol to use for sending/receiveing messages
setQueueName(String) - Method in class com.sssw.jms.api.JMQQueue
Set the name of this Queue.
setServers(JMQServerInfo[]) - Method in class com.sssw.jms.api.JMQConnectionFactory
Set the servers in the cluster for this connection factory
setShort(String, short) - Method in interface javax.jms.MapMessage
Sets a short value with the specified name into the Map.
setShortProperty(String, short) - Method in interface javax.jms.Message
Sets a short property value with the specified name into the message.
setString(String, String) - Method in interface javax.jms.MapMessage
Sets a String value with the specified name into the Map.
setStringProperty(String, String) - Method in interface javax.jms.Message
Sets a String property value with the specified name into the message.
setText(String) - Method in interface javax.jms.TextMessage
Sets the string containing this message's data.
setText(String) - Method in interface com.sssw.jms.api.JMQXMLMessage
Sets the string containing this message's data.
setTimeToLive(long) - Method in interface javax.jms.MessageProducer
Sets the default length of time in milliseconds from its dispatch time that a produced message should be retained by the message system.
setTopicName(String) - Method in class com.sssw.jms.api.JMQTopic
Set the name of this Topic.
shutdown() - Method in class com.sssw.jms.api.JMQMessageService
Shutdown the in-process jBroker MQ message service.
start() - Method in interface javax.jms.Connection
Starts (or restarts) a connection's delivery of incoming messages.
start() - Method in interface javax.jms.ServerSession
Cause the Session's run method to be called to process messages that were just assigned to it.
start() - Method in class com.sssw.jms.api.JMQMessageService
Start the in-process jBroker MQ message service.
stop() - Method in interface javax.jms.Connection
Temporarily stops a connection's delivery of incoming messages.
StreamMessage - interface javax.jms.StreamMessage.
A StreamMessage object is used to send a stream of primitive types in the Java programming language.

T

TemporaryQueue - interface javax.jms.TemporaryQueue.
A TemporaryQueue object is a unique Queue object created for the duration of a QueueConnection.
TemporaryTopic - interface javax.jms.TemporaryTopic.
A TemporaryTopic object is a unique Topic object created for the duration of a TopicConnection.
TextMessage - interface javax.jms.TextMessage.
A TextMessage object is used to send a message containing a java.lang.String.
toNative(Destination) - Static method in class com.sssw.jms.api.JMQDestination
Convert a JMS destination to a jBroker MQ destination.
Topic - interface javax.jms.Topic.
A Topic object encapsulates a provider-specific topic name.
TOPIC - Static variable in class com.sssw.jms.api.JMQConnectionFactory
Topic Connection.
TOPIC - Static variable in class com.sssw.jms.api.JMQDestination
Topic Destination.
TopicConnection - interface javax.jms.TopicConnection.
A TopicConnection object is an active connection to a publish/subscribe JMS provider.
TopicConnectionFactory - interface javax.jms.TopicConnectionFactory.
A client uses a TopicConnectionFactory object to create TopicConnection objects with a publish/subscribe JMS provider.
TopicPublisher - interface javax.jms.TopicPublisher.
A client uses a TopicPublisher object to publish messages on a topic.
TopicRequestor - class javax.jms.TopicRequestor.
The TopicRequestor helper class simplifies making service requests.
TopicRequestor(TopicSession, Topic) - Constructor for class javax.jms.TopicRequestor
Constructor for the TopicRequestor class.
TopicSession - interface javax.jms.TopicSession.
A TopicSession object provides methods for creating TopicPublisher, TopicSubscriber, and TemporaryTopic objects.
TopicSubscriber - interface javax.jms.TopicSubscriber.
A client uses a TopicSubscriber object to receive messages that have been published to a topic.
toString() - Method in interface javax.jms.Topic
Returns a string representation of this object.
toString() - Method in interface javax.jms.Queue
Returns a string representation of this object.
toString() - Method in class com.sssw.jms.api.JMQConnectionFactory
Return a pretty printed string form of this connection factory
toString() - Method in class com.sssw.jms.api.JMQXAQueueConnectionFactory
 
toString() - Method in class com.sssw.jms.api.JMQXATopicConnectionFactory
 
toString() - Method in class com.sssw.jms.api.JMQTopic
Return a pretty printed version of the topic name.
toString() - Method in class com.sssw.jms.api.JMQQueueConnectionFactory
 
toString() - Method in class com.sssw.jms.api.JMQTopicConnectionFactory
 
toString() - Method in class com.sssw.jms.api.JMQQueue
Return a pretty printed version of the queue name.
toString() - Method in class com.sssw.jms.api.JMQServerInfo
Return string for of this object.
toString() - Method in class com.sssw.jms.api.admin.JMQSubscriberInfo
 
TransactionInProgressException - exception javax.jms.TransactionInProgressException.
This exception is thrown when an operation is invalid because a transaction is in progress.
TransactionInProgressException(String) - Constructor for class javax.jms.TransactionInProgressException
Constructs a TransactionInProgressException with the specified reason.
TransactionInProgressException(String, String) - Constructor for class javax.jms.TransactionInProgressException
Constructs a TransactionInProgressException with the specified reason and error code.
TransactionRolledBackException - exception javax.jms.TransactionRolledBackException.
This exception must be thrown when a call to Session.commit results in a rollback of the current transaction.
TransactionRolledBackException(String) - Constructor for class javax.jms.TransactionRolledBackException
Constructs a TransactionRolledBackException with the specified reason.
TransactionRolledBackException(String, String) - Constructor for class javax.jms.TransactionRolledBackException
Constructs a TransactionRolledBackException with the specified reason and error code.

U

unsubscribe(String) - Method in interface javax.jms.TopicSession
Unsubscribes a durable subscription that has been created by a client.
updateAcl(String, Acl) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Update the ACL with the given name
updateAcl(String, Acl) - Method in interface com.sssw.jms.api.security.JMQAclManager
Update the ACL with the given name
updatePassword(String, String) - Method in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Update the password for the given user.
updatePassword(String, String) - Method in interface com.sssw.jms.api.security.JMQPrincipalManager
Update the password for the given user.
USER_ANONYMOUS - Static variable in interface com.sssw.jms.api.admin.JMQSecurityAdmin
Name of the built-in anonymous user
USER_ANONYMOUS - Static variable in interface com.sssw.jms.api.security.JMQPrincipalManager
Name of the built-in anonymous user

V

version() - Method in class com.sssw.jms.api.JMQDatabase
Get jBroker MQ database version.

W

writeBoolean(boolean) - Method in interface javax.jms.BytesMessage
Writes a boolean to the bytes message stream as a 1-byte value.
writeBoolean(boolean) - Method in interface javax.jms.StreamMessage
Writes a boolean to the stream message.
writeByte(byte) - Method in interface javax.jms.BytesMessage
Writes a byte to the bytes message stream as a 1-byte value.
writeByte(byte) - Method in interface javax.jms.StreamMessage
Writes a byte to the stream message.
writeBytes(byte[]) - Method in interface javax.jms.BytesMessage
Writes a byte array to the bytes message stream.
writeBytes(byte[]) - Method in interface javax.jms.StreamMessage
Writes a byte array field to the stream message.
writeBytes(byte[], int, int) - Method in interface javax.jms.BytesMessage
Writes a portion of a byte array to the bytes message stream.
writeBytes(byte[], int, int) - Method in interface javax.jms.StreamMessage
Writes a portion of a byte array as a byte array field to the stream message.
writeChar(char) - Method in interface javax.jms.BytesMessage
Writes a char to the bytes message stream as a 2-byte value, high byte first.
writeChar(char) - Method in interface javax.jms.StreamMessage
Writes a char to the stream message.
writeDouble(double) - Method in interface javax.jms.BytesMessage
Converts the double argument to a long using the doubleToLongBits method in class Double, and then writes that long value to the bytes message stream as an 8-byte quantity, high byte first.
writeDouble(double) - Method in interface javax.jms.StreamMessage
Writes a double to the stream message.
writeFloat(float) - Method in interface javax.jms.BytesMessage
Converts the float argument to an int using the floatToIntBits method in class Float, and then writes that int value to the bytes message stream as a 4-byte quantity, high byte first.
writeFloat(float) - Method in interface javax.jms.StreamMessage
Writes a float to the stream message.
writeInt(int) - Method in interface javax.jms.BytesMessage
Writes an int to the bytes message stream as four bytes, high byte first.
writeInt(int) - Method in interface javax.jms.StreamMessage
Writes an int to the stream message.
writeLong(long) - Method in interface javax.jms.BytesMessage
Writes a long to the bytes message stream as eight bytes, high byte first.
writeLong(long) - Method in interface javax.jms.StreamMessage
Writes a long to the stream message.
writeObject(Object) - Method in interface javax.jms.BytesMessage
Writes an object to the bytes message stream.
writeObject(Object) - Method in interface javax.jms.StreamMessage
Writes an object to the stream message.
writeShort(short) - Method in interface javax.jms.BytesMessage
Writes a short to the bytes message stream as two bytes, high byte first.
writeShort(short) - Method in interface javax.jms.StreamMessage
Writes a short to the stream message.
writeString(String) - Method in interface javax.jms.StreamMessage
Writes a String to the stream message.
writeUTF(String) - Method in interface javax.jms.BytesMessage
Writes a string to the bytes message stream using UTF-8 encoding in a machine-independent manner.

X

XA_QUEUE - Static variable in class com.sssw.jms.api.JMQConnectionFactory
Queue XA Connection
XA_TOPIC - Static variable in class com.sssw.jms.api.JMQConnectionFactory
Topic XA Connection
XAConnection - interface javax.jms.XAConnection.
The XAConnection interface extends the capability of Connection by providing an XASession (optional).
XAConnectionFactory - interface javax.jms.XAConnectionFactory.
The XAConnectionFactory interface is a base interface for the XAQueueConnectionFactory and XATopicConnectionFactory interfaces.
XAQueueConnection - interface javax.jms.XAQueueConnection.
An XAQueueConnection provides the same create options as QueueConnection (optional).
XAQueueConnectionFactory - interface javax.jms.XAQueueConnectionFactory.
An XAQueueConnectionFactory provides the same create options as a QueueConnectionFactory (optional).
XAQueueSession - interface javax.jms.XAQueueSession.
An XAQueueSession provides a regular QueueSession, which can be used to create QueueReceiver, QueueSender, and QueueBrowser objects (optional).
XASession - interface javax.jms.XASession.
The XASession interface extends the capability of Session by adding access to a JMS provider's support for the Java Transaction API (JTA) (optional).
XATopicConnection - interface javax.jms.XATopicConnection.
An XATopicConnection provides the same create options as TopicConnection (optional).
XATopicConnectionFactory - interface javax.jms.XATopicConnectionFactory.
An XATopicConnectionFactory provides the same create options as a TopicConnectionFactory (optional).
XATopicSession - interface javax.jms.XATopicSession.
An XATopicSession provides a regular TopicSession.

A B C D E G H I J L M N O P Q R S T U V W X
jBroker® MQ 2.1

jBroker is a registered trademark of Novell, Inc.
Copyright 1998-2003 Novell, Inc. All Rights Reserved.