210211212213214215216
public MonadUri getEditUri() throws HttpException { return channel.getHhDataInstance().getEditUri().resolve(getUriId()); } public Urlable getChild(UriPathElement urlId) throws HttpException { throw new NotFoundException(); }
125126127128129130131132
public Urlable getChild(UriPathElement uriId) throws HttpException { if (ClockIntervals.URI_ID.equals(uriId)) { return new ClockIntervals(this); } else { throw new NotFoundException(); } }
7879808182838485
public MarketRole getChild(UriPathElement uriId) throws HttpException { try { return MarketRole.getMarketRole(Long.parseLong(uriId.toString())); } catch (NumberFormatException e) { throw new NotFoundException(); } }
259260261262263264265
public MonadUri getEditUri() { return null; } public Urlable getChild(UriPathElement uriId) throws HttpException { throw new NotFoundException(); }
16381639164016411642164316441645
public Urlable getChild(UriPathElement uriId) throws HttpException { if (Channels.URI_ID.equals(uriId)) { return new Channels(this); } else { throw new NotFoundException(); } }