Home | History | Annotate | Download | only in spi

Lines Matching refs:key

40      * the <code>key</code> parameter into the current thread's context map. 
41 * The <code>key</code> parameter cannot be null. The code>val</code> parameter
47 public void put(String key, String val);
50 * Get the context identified by the <code>key</code> parameter.
51 * The <code>key</code> parameter cannot be null.
53 * @return the string value identified by the <code>key</code> parameter.
55 public String get(String key);
58 * Remove the the context identified by the <code>key</code> parameter.
59 * The <code>key</code> parameter cannot be null.
63 * associated with <code>key</code>.
65 public void remove(String key);