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

Examples of com.ibm.sbt.services.client.connections.common.Person


   * @see Person.java
   * @return Person
   */
  public Person getModifier() {
    if(null == modifierEntry && getDataHandler()!=null) {
      modifierEntry = new Person(getService(), new XmlDataHandler((Node)getDataHandler().getData(),
              nameSpaceCtx, (XPathExpression)AtomXPath.modifier.getPath()));
    }
    return modifierEntry;
  }
View Full Code Here


  }
 
  public Comment(FileService svc, XmlDataHandler dh) {
        super(svc, dh);
        if (dh!=null) {
        authorEntry = new Person(getService(), new XmlDataHandler((Node)this.getDataHandler().getData(),
            nameSpaceCtx, (XPathExpression)AtomXPath.author.getPath()));
        modifierEntry = new Person(getService(), new XmlDataHandler((Node)this.getDataHandler().getData(),
            nameSpaceCtx, (XPathExpression)AtomXPath.modifier.getPath()));
        }
    }
View Full Code Here

  /**
   *
   * @return
   */
  public Person getModifier() {
    return new Person(getService(), new XmlDataHandler((Node)this.getDataHandler().getData(),
          nameSpaceCtx, (XPathExpression)AtomXPath.modifier.getPath()));
  }
View Full Code Here

  /**
   *
   * @return
   */
  public Person getContentModifiedBy() {
    return new Person(getService(), new XmlDataHandler((Node)getDataHandler().getData(),
          nameSpaceCtx, (XPathExpression)ForumsXPath.contentModifiedBy.getPath()));
  }
View Full Code Here

    return id;
  }

  @Override
  public Person getAuthor(){
    return new Person(getService(),new XmlDataHandler((Node)getDataHandler().getData(),
          nameSpaceCtx, (XPathExpression)AtomXPath.author.getPath()));
  }
View Full Code Here

          nameSpaceCtx, (XPathExpression)AtomXPath.author.getPath()));
  }

  @Override
  public Person getContributor(){
    return new Person(getService(), new XmlDataHandler((Node)getDataHandler().getData(),
          nameSpaceCtx, (XPathExpression)AtomXPath.contributor.getPath()));
  }
View Full Code Here

  *
  * @return Author
  */
  @Override
  public Person getAuthor(){
    return new Person(getService(),new XmlDataHandler((Node)this.getDataHandler().getData(),
          nameSpaceCtx, (XPathExpression)AtomXPath.author.getPath()));
  }
View Full Code Here

  *
  * @return Author
  */
  @Override
  public Person getContributor(){
    return new Person(getService(),new XmlDataHandler((Node)this.getDataHandler().getData(),
          nameSpaceCtx, (XPathExpression)AtomXPath.contributor.getPath()));
  }
View Full Code Here

TOP

Related Classes of com.ibm.sbt.services.client.connections.common.Person

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.