use of com.runwaysdk.session.Session in project geoprism-registry by terraframe.
the class ListTypeService method createEntries.
@Request(RequestType.SESSION)
public JsonObject createEntries(String sessionId, String oid) {
ListType mList = ListType.get(oid);
mList.createEntries(null);
((Session) Session.getCurrentSession()).reloadPermissions();
return mList.toJSON(true);
}
Aggregations