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();
}