Package | Description |
---|---|
net.ontopia.topicmaps.nav2.impl.framework |
The implementation of the Navigator Framework related interfaces.
|
net.ontopia.topicmaps.nav2.utils |
Provides utility classes for the Navigator Tag Libraries and
Framework.
|
net.ontopia.topicmaps.webed.core |
The core interfaces of the Web Editor Framework; the main
interfaces used to build Web Editor applications.
|
net.ontopia.topicmaps.webed.impl.basic |
The basic implementation of the core interfaces belonging to
Ontopia's web editor framework, except the classes related to the
to the implementation of actions (which are in their own package
structure).
|
net.ontopia.topicmaps.webed.impl.utils |
Modifier and Type | Class and Description |
---|---|
class |
User
INTERNAL: implementation of UserIF for holding data relevant to one
user session.
|
Modifier and Type | Method and Description |
---|---|
static UserIF |
FrameworkUtils.createUserSession(javax.servlet.jsp.PageContext pageContext)
INTERNAL: Create new user object in session scope.
|
static UserIF |
FrameworkUtils.createUserSession(javax.servlet.jsp.PageContext pageContext,
int scope)
INTERNAL: Create new user object in given scope.
|
static UserIF |
FrameworkUtils.getUser(javax.servlet.jsp.PageContext pageContext)
INTERNAL: Gets user object out of session scope.
|
static UserIF |
FrameworkUtils.getUser(javax.servlet.jsp.PageContext pageContext,
boolean create)
INTERNAL: Gets user object out of session scope.
|
Modifier and Type | Method and Description |
---|---|
UserIF |
WebEdRequestIF.getUser()
PUBLIC: Returns the user object connected with this request.
|
Modifier and Type | Field and Description |
---|---|
protected UserIF |
ActionContext.user |
Modifier and Type | Method and Description |
---|---|
UserIF |
WebEdRequest.getUser() |
UserIF |
ActionContextIF.getUser()
INTERNAL: Gets the user object who executed the requests and in
which authority the consequenctly executed actions run.
|
UserIF |
ActionContext.getUser() |
Constructor and Description |
---|
ActionContext(UserIF user,
Parameters params) |
WebEdRequest(UserIF user,
Map actionmap,
javax.servlet.ServletContext context,
javax.servlet.http.HttpServletRequest request) |
Modifier and Type | Field and Description |
---|---|
UserIF |
NamedLock.user |
Modifier and Type | Method and Description |
---|---|
UserIF |
NamedLock.getUser() |
Modifier and Type | Method and Description |
---|---|
LockResult |
NamedLockManager.attemptToLock(UserIF user,
Collection objects,
String nameBase,
javax.servlet.http.HttpSession session)
INTERNAL: Attempts to lock all the objects in the input collection and
assigns name to the collection for later retrieval.
|
boolean |
NamedLockManager.ownsLock(UserIF user,
String name)
INTERNAL: Returns true if the user owns the given lock.
|
void |
NamedLockManager.releaseLocksFor(UserIF user)
INTERNAL: Releases all the locks that the user owns.
|
void |
NamedLockManager.unlock(UserIF user,
String name,
boolean forced)
INTERNAL:
If forced is false, unlocks the lock with the given 'name' for the given
user.
|
Constructor and Description |
---|
NamedLock(String name,
UserIF user,
Collection objects) |