Package org.serviceconnector.service

Examples of org.serviceconnector.service.InvalidMaskLengthException


   *             the invalid mask length exception
   */
  public void addClientSubscriptionId(String clientSubscriptionId, SubscriptionMask clientMask) throws InvalidMaskLengthException {
    if (this.subscriptionMask != null && (this.subscriptionMask.getValue().length() != clientMask.getValue().length())) {
      // client mask has invalid (different than current mask of cascaded client) length
      throw new InvalidMaskLengthException("client mask has invalid length: clientSubscriptionId=" + clientSubscriptionId
          + " clientMask=" + clientMask);
    }
    this.clientSubscriptionIds.put(clientSubscriptionId, clientMask);
  }
View Full Code Here


   *             the invalid mask length exception
   */
  public void addClientSubscriptionId(String clientSubscriptionId, SubscriptionMask clientMask) throws InvalidMaskLengthException {
    if (this.subscriptionMask != null && (this.subscriptionMask.getValue().length() != clientMask.getValue().length())) {
      // client mask has invalid (different than current mask of cascaded client) length
      throw new InvalidMaskLengthException("client mask has invalid length: clientSubscriptionId=" + clientSubscriptionId
          + " clientMask=" + clientMask);
    }
    this.clientSubscriptionIds.put(clientSubscriptionId, clientMask);
  }
View Full Code Here

TOP

Related Classes of org.serviceconnector.service.InvalidMaskLengthException

Copyright © 2018 www.massapicom. 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.