Home | History | Annotate | Download | only in protocol

Lines Matching refs:id

65     public Object getAttribute(final String id) {
66 if (id == null) {
67 throw new IllegalArgumentException("Id may not be null");
71 obj = this.map.get(id);
74 obj = this.parentContext.getAttribute(id);
79 public void setAttribute(final String id, final Object obj) {
80 if (id == null) {
81 throw new IllegalArgumentException("Id may not be null");
86 this.map.put(id, obj);
89 public Object removeAttribute(final String id) {
90 if (id == null) {
91 throw new IllegalArgumentException("Id may not be null");
94 return this.map.remove(id);