Package javax.slee

Examples of javax.slee.Address


     * @return an <code>Address</code> object containing the address form of the profile
     *        identified by this profile identifier.
     */
    public Address toAddress() {
        if (address == null) {
            address = new Address(AddressPlan.SLEE_PROFILE, profileTableName + '/' + profileName);
        }
        return address;
    }
View Full Code Here


   * @return boolean: TRUE -> Voice Mail enabled. FALSE -> Voice Mail disabled
   *         for the given user identified by sip address.
   */
  private boolean isSubscriber(String sipAddress) {
    boolean state = false;
    CallControlProfileCMP profile = lookup(new Address(AddressPlan.SIP,
        sipAddress));

    if (profile != null) {
      state = profile.getVoicemailState();
    }
View Full Code Here

   * Attempt to find a list of Blocked Addresses (SIP URIs), but the method
   * returns null if the called user (sipAddress) does not block to any user.
   */
  private ArrayList getBlockedArrayList(String sipAddress) {
    ArrayList uris = null;
    CallControlProfileCMP profile = lookup(new Address(AddressPlan.SIP,
        sipAddress));
    if (profile != null) {
      Address[] addresses = profile.getBlockedAddresses();

      if (addresses != null) {
View Full Code Here

TOP

Related Classes of javax.slee.Address

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.