Package nu.fw.jeti.plugins

Examples of nu.fw.jeti.plugins.Avatars.addHash()


      pb.priority = loginInfo.getPriority();
      Avatars avatars = getAvatarInterface();
      //pb.addExtension(capabilities.getCaps());
      if(avatars!=null)
      {
        pb.addExtension(avatars.addHash());
      }
      if(show!=Presence.UNAVAILABLE && openPGP!=null)
      {
        pb.addExtension(openPGP.signPresence(status));
      }
View Full Code Here


        } else {
          Avatars avatars = getAvatarInterface();
          Presence presence=null;
      if(avatars!=null)
      {
        presence = avatars.addHash(jid,status, messageText);
      }
      else presence = new Presence(jid,status, messageText);
           backend.send(presence);
        }
    }
View Full Code Here

              if (Preferences.getBoolean("jeti", "statusLinked", false)) {
                status = StatusButton.getStatus();
                message = StatusButton.getStatusMessage();
              }
              Presence presence=null;
            presence = avatar.addHash(jid,status,message,new XMUC());
            backend.send(presence);
 
          }
        },60000);
        }
View Full Code Here

    Avatars avatars = getAvatarInterface();
    Presence presence=null;
    if(avatars!=null)
    {
      XExtension e = new nu.fw.jeti.plugins.groupchat.elements.XMUC();
      presence = avatars.addHash(jid,status,message,e);
    }
    else presence = new Presence(jid,status,message,new nu.fw.jeti.plugins.groupchat.elements.XMUC());
    backend.send(presence);
  }
 
View Full Code Here

  {
    Avatars avatars = getAvatarInterface();
    Presence presence=null;
    if(avatars!=null)
    {
      presence = avatars.addHash(jid,status,message,new nu.fw.jeti.plugins.groupchat.elements.XMUC());
    }
    else presence = new Presence(jid,status,message,new nu.fw.jeti.plugins.groupchat.elements.XMUC());
    backend.send(presence);
  }
 
View Full Code Here

      }
      Avatars avatars = getAvatarInterface();
      Presence presence=null;
    if(avatars!=null)
    {
      presence = avatars.addHash(jid,status,message,new XMUC());
    }
    else presence = new Presence(jid,status,message,new XMUC());
    backend.send(presence);
    }
  
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.