Lines Matching defs:alias
180 * Get the extension with this alias.
182 * @param alias the identifier string for the extension to retrieve.
184 public Extension get(String alias) {
185 X509AttributeName attr = new X509AttributeName(alias);
189 int index = alias.lastIndexOf(".");
190 name = alias.substring(index + 1);
192 name = alias;
197 * Set the extension value with this alias.
199 * @param alias the identifier string for the extension to set.
201 * alias.
203 public void set(String alias, Object obj) {
204 map.put(alias, (Extension)obj);
208 * Delete the extension value with this alias.
210 * @param alias the identifier string for the extension to delete.
212 public void delete(String alias) {
213 map.remove(alias);