108109110111112113114115
{ Integer.parseInt(stateId); } catch (NumberFormatException e) { throw new InvalidStateIdException(e, stateId); } }
5859606162636465666768
{ Integer.parseInt(stateId); } catch (NumberFormatException e) { throw new InvalidStateIdException(e, stateId); } PortletStateContext context = store.get(stateId); if (context == null) { throw new NoSuchStateException(stateId);
129130131132133134135136137138139
{ Integer.parseInt(stateId); } catch (NumberFormatException e) { throw new InvalidStateIdException(e, stateId); } if (store.remove(stateId) == null) { throw new NoSuchStateException(stateId); }