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); } }
404142434445464748
ParameterValidation.throwIllegalArgExceptionIfNullOrEmpty(stateId, "state id", null); PortletStateContext context = getStateContext(stateId); if (context == null) { throw new NoSuchStateException(stateId); } return context; }
9192939495969798
{ ParameterValidation.throwIllegalArgExceptionIfNullOrEmpty(stateId, "state id", null); if (destroyStateContext(stateId) == null) { throw new NoSuchStateException(stateId); } }
495051525354555657
{ checkId(stateId); ConsumerStateContext<S> state = get(stateId); if (state == null) { throw new NoSuchStateException(stateId); } return state; }
7475767778798081828384
{ throw new IllegalArgumentException(); } if (get(stateId) == null) { throw new NoSuchStateException(stateId); } // put(stateId, new ConsumerStateContext<S>(stateId, state.getPortletId(), state.getStateType(), state.getState())); }
8687888990919293949596
public synchronized void destroyState(String stateId) throws IllegalArgumentException, NoSuchStateException, InvalidStateIdException { checkId(stateId); if (get(stateId) != null) { throw new NoSuchStateException(stateId); } // remove(stateId); }