474849505152535455
{ checkId(stateId); ConsumerStateContext state = get(stateId); if (state == null) { throw new NoSuchStateException(stateId); } return state; }
7273747576777879808182
{ throw new IllegalArgumentException(); } if (get(stateId) == null) { throw new NoSuchStateException(stateId); } // put(stateId, new ConsumerStateContext(stateId, state.getPortletId(), state.getBytes())); }
8485868788899091929394
public synchronized void destroyState(String stateId) throws IllegalArgumentException, NoSuchStateException, InvalidStateIdException { checkId(stateId); if (get(stateId) != null) { throw new NoSuchStateException(stateId); } // remove(stateId); }
636465666768697071
throw new InvalidStateIdException(e, stateId); } PortletStateContext context = store.get(stateId); if (context == null) { throw new NoSuchStateException(stateId); } return context; }
133134135136137138139140
{ throw new InvalidStateIdException(e, stateId); } if (store.remove(stateId) == null) { throw new NoSuchStateException(stateId); } }