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.