Package net.sf.chellow.ui

Examples of net.sf.chellow.ui.Me


    return URI_ID;
  }

  public Urlable getChild(UriPathElement uriId) throws HttpException {
    if (Me.URI_ID.equals(uriId)) {
      return new Me();
    } else {
      return (User) Hiber.session().createQuery(
          "from User user where user.id = :userId").setLong("userId",
          Long.parseLong(uriId.getString())).uniqueResult();
    }
View Full Code Here

TOP

Related Classes of net.sf.chellow.ui.Me

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.