Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
ea813605
Commit
ea813605
authored
Nov 27, 2000
by
Anthony Green
Committed by
Anthony Green
Nov 27, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace stubs with actual implementation
From-SVN: r37782
parent
5fcd86dd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
25 deletions
+39
-25
libjava/ChangeLog
+14
-0
libjava/javax/naming/InitialContext.java
+25
-25
No files found.
libjava/ChangeLog
View file @
ea813605
Sun Nov 26 22:35:53 2000 Anthony Green <green@redhat.com>
* javax/naming/InitialContext.java (rebind): Implement.
(unbind): Implement.
(rename): Implement.
(list): Implement.
(listBindings): Implement.
(destroySubcontext): Implement.
(createSubcontext): Implement.
(lookupLink): Implement.
(getNameParser): Implement.
(composeName): Implement.
(addToEnvironment): Implement.
Sun Nov 26 21:30:25 2000 Anthony Green <green@redhat.com>
* javax/naming/AuthenticationException.java,
...
...
libjava/javax/naming/InitialContext.java
View file @
ea813605
...
...
@@ -196,129 +196,129 @@ public class InitialContext implements Context
public
Object
lookup
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
lookup
(
name
);
}
public
Object
lookup
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
lookup
(
name
);
}
public
void
rebind
(
Name
name
,
Object
obj
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
getURLOrDefaultInitCtx
(
name
).
rebind
(
name
,
obj
);
}
public
void
rebind
(
String
name
,
Object
obj
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
getURLOrDefaultInitCtx
(
name
).
rebind
(
name
,
obj
);
}
public
void
unbind
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
getURLOrDefaultInitCtx
(
name
).
unbind
(
name
);
}
public
void
unbind
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
getURLOrDefaultInitCtx
(
name
).
unbind
(
name
);
}
public
void
rename
(
Name
oldName
,
Name
newName
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
getURLOrDefaultInitCtx
(
oldName
).
rename
(
oldName
,
newName
);
}
public
void
rename
(
String
oldName
,
String
newName
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
getURLOrDefaultInitCtx
(
oldName
).
rename
(
oldName
,
newName
);
}
public
NamingEnumeration
list
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
list
(
name
);
}
public
NamingEnumeration
list
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
list
(
name
);
}
public
NamingEnumeration
listBindings
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
listBindings
(
name
);
}
public
NamingEnumeration
listBindings
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
listBindings
(
name
);
}
public
void
destroySubcontext
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
destroySubcontext
(
name
);
}
public
void
destroySubcontext
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
destroySubcontext
(
name
);
}
public
Context
createSubcontext
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
createSubcontext
(
name
);
}
public
Context
createSubcontext
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
createSubcontext
(
name
);
}
public
Object
lookupLink
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
lookupLink
(
name
);
}
public
Object
lookupLink
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
lookupLink
(
name
);
}
public
NameParser
getNameParser
(
Name
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
getNameParser
(
name
);
}
public
NameParser
getNameParser
(
String
name
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
getNameParser
(
name
);
}
public
Name
composeName
(
Name
name
,
Name
prefix
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
composeName
(
name
,
prefix
);
}
public
String
composeName
(
String
name
,
String
prefix
)
throws
NamingException
;
{
throw
new
OperationNotSupportedException
(
);
return
getURLOrDefaultInitCtx
(
name
).
composeName
(
name
,
prefix
);
}
public
Object
addToEnvironment
(
String
propName
,
Object
propVal
)
throws
NamingException
;
{
throw
new
OperationNotSupportedException
(
);
myProps
.
add
(
propName
,
propVal
);
}
public
Object
removeFromEnvironment
(
String
propName
)
throws
NamingException
{
throw
new
OperationNotSupportedException
(
);
myProps
.
remove
(
propName
);
}
public
Hashtable
getEnvironment
()
throws
NamingException
{
throw
new
OperationNotSupportedException
()
;
return
myProps
;
}
public
void
close
()
throws
NamingException
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment