Examples of AddressDetail


Examples of net.java.sip.communicator.service.protocol.ServerStoredDetails.AddressDetail

     * accountInfoOpSet belongs.
     */
    public static String getAddress(
            OperationSetServerStoredAccountInfo accountInfoOpSet)
    {
        AddressDetail address = null;
        Iterator<GenericDetail> addressDetails
            =  accountInfoOpSet.getDetails(AddressDetail.class);

        if (addressDetails.hasNext())
            address = (AddressDetail) addressDetails.next();

        if(address == null)
            return null;

        return address.getAddress();
    }
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.