use of org.collectionspace.chain.csp.webui.main.Request in project application by collectionspace.
the class RecordAuthorities method run.
@Override
public void run(Object in, String[] tail) throws UIException {
Request q = (Request) in;
store_get(q.getStorage(), q.getUIRequest(), StringUtils.join(tail, "/"));
}
use of org.collectionspace.chain.csp.webui.main.Request in project application by collectionspace.
the class RecordCreateUpdate method run.
@Override
public void run(Object in, String[] tail) throws UIException {
Request q = (Request) in;
ctl = new CacheTermList(q.getCache());
store_set(q.getStorage(), q.getUIRequest(), StringUtils.join(tail, "/"));
}
use of org.collectionspace.chain.csp.webui.main.Request in project application by collectionspace.
the class RecordRelated method run.
@Override
public void run(Object in, String[] tail) throws UIException {
Request q = (Request) in;
store_get(q.getStorage(), q.getUIRequest(), StringUtils.join(tail, "/"));
}
use of org.collectionspace.chain.csp.webui.main.Request in project application by collectionspace.
the class RecordSearchList method run.
public void run(Object in, String[] tail) throws UIException {
Request q = (Request) in;
searchtype(q.getStorage(), q.getUIRequest(), StringUtils.join(tail, "/"));
}
use of org.collectionspace.chain.csp.webui.main.Request in project application by collectionspace.
the class RelateDelete method run.
public void run(Object in, String[] tail) throws UIException {
Request q = (Request) in;
relate_delete(q.getStorage(), q.getUIRequest(), StringUtils.join(tail, "/"));
}
Aggregations