Home | History | Annotate | Download | only in smackx

Lines Matching refs:Identity

23 import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
38 private Identity identity;
48 Gateway(Connection connection, String entityJID, DiscoverInfo info, Identity identity){
51 this.identity = identity;
56 Iterator<Identity> iterator = info.getIdentities();
58 Identity temp = iterator.next();
60 this.identity = temp;
66 private Identity getIdentity() throws XMPPException{
67 if(identity==null){
70 return identity;
117 * Returns the name as proposed in this gateways identity discovered via service
123 if(identity==null){
126 return identity.getName();
130 * Returns the type as proposed in this gateways identity discovered via service
137 if(identity==null){
140 return identity.getType();