BinaryRefAddr.java: New file
* javax/naming/BinaryRefAddr.java: New file * javax/naming/InitialContext.java: Compile fix * javax/naming/InvalidNameException.java: Add comments * javax/naming/Name.java: Ditto * javax/naming/NamingException.java: Implement * javax/naming/OperationNotSupportedException.java: Compile fix * javax/naming/RefAddr.java: Implement * javax/naming/StringRefAddr.java: Add comments and implement * javax/naming/directory/InitialDirContext.java: Compile fix From-SVN: r46364
This commit is contained in:
parent
03bf2c237c
commit
16f7dac7f5
10 changed files with 823 additions and 52 deletions
|
@ -308,12 +308,12 @@ public class InitialContext implements Context
|
|||
public Object addToEnvironment (String propName,
|
||||
Object propVal) throws NamingException
|
||||
{
|
||||
myProps.put (propName, propVal);
|
||||
return myProps.put (propName, propVal);
|
||||
}
|
||||
|
||||
public Object removeFromEnvironment (String propName) throws NamingException
|
||||
{
|
||||
myProps.remove (propName);
|
||||
return myProps.remove (propName);
|
||||
}
|
||||
|
||||
public Hashtable getEnvironment () throws NamingException
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue