Examples of SetDMQRequest


Examples of org.objectweb.joram.shared.admin.SetDMQRequest

   * @exception AdminException  If the request fails.
   * @throws InvalidDestinationException If the specified destination is invalid.
   */
  public void setDMQId(String dmqId) throws ConnectException, AdminException, InvalidDestinationException {
    if (dmqId != null) checkId(dmqId);
    doRequest(new SetDMQRequest(getName(), dmqId));
  }
View Full Code Here

Examples of org.objectweb.joram.shared.admin.SetDMQRequest

   *
   * @exception ConnectException  If the connection fails.
   * @exception AdminException  If the request fails.
   */
  public final void setDefaultDMQId(int serverId, String dmqId) throws ConnectException, AdminException {
    doRequest(new SetDMQRequest(DestinationConstants.getNullId(serverId), dmqId));
  }
View Full Code Here

Examples of org.objectweb.joram.shared.admin.SetDMQRequest

   *
   * @exception ConnectException  If the connection fails.
   * @exception AdminException  If the request fails.
   */
  public final void setDefaultDMQ(int serverId, Queue dmq) throws ConnectException, AdminException {
    doRequest(new SetDMQRequest(DestinationConstants.getNullId(serverId), (dmq==null)?null:dmq.getName()));
  }
View Full Code Here

Examples of org.objectweb.joram.shared.admin.SetDMQRequest

   *
   * @exception ConnectException  If the connection fails.
   * @exception AdminException  If the request fails.
   */
  public void setDMQId(String dmqId) throws ConnectException, AdminException {
    doRequest(new SetDMQRequest(proxyId, dmqId));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.