Examples of JabberUserProperty


Examples of hudson.plugins.jabber.user.JabberUserProperty

  }

  @Override
  protected String getConfiguredIMId(User user) {
      // if set, user property override all other settings:
        JabberUserProperty jabberUserProperty = (JabberUserProperty) user.getProperties().get(JabberUserProperty.DESCRIPTOR);
        if (jabberUserProperty != null && jabberUserProperty.getJid() != null) {
            return jabberUserProperty.getJid();
        }
     
    if (getDescriptor().isEmailAddressAsJabberId()) {
      Mailer.UserProperty mailProperty = user.getProperty(Mailer.UserProperty.class);
      if (mailProperty != null) {
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.