Package com.ibm.sbt.services.client.connections.activities

Examples of com.ibm.sbt.services.client.connections.activities.InReplyTo


        attribute(TERM, entity.getFlags()),
        attribute(LABEL, entity.getFlags())) : null;
  }
 
  protected Element inReplyTo() {
    InReplyTo inReplyTo = entity.getInReplyTo();
    return inReplyTo != null ? element(IN_REPLY_TO,
        attribute(SCHEME, Namespace.THR.getUrl()),
        attribute(REF, inReplyTo.getRef()),
        attribute(SOURCE, inReplyTo.getSource()),
        attribute(HREF, inReplyTo.getHref())) : null;
  }
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.client.connections.activities.InReplyTo

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.