Package | Description |
---|---|
org.itracker.model |
All entity classes are POJO beans.
|
org.itracker.model.util |
This package contains code for what?
|
org.itracker.persistence.dao |
This package contains all Data Access Object (XxxDAO) interfaces
along with their Hibernate implementations (XxxDAOImpl).
|
org.itracker.services |
Service Interfaces
|
org.itracker.services.authentication |
This package has something to do with Authentication ;)
|
org.itracker.services.authentication.adsson |
This package has something to do with Authentication, maybe Active Directory Service for those not using Linux for whatever reason ;)
|
org.itracker.services.implementations |
This package contains XXXService interface implementations,
named XXXServiceImpl by convention.
|
org.itracker.web.forms |
This package contains Struts forms used when receiving data from the Struts servlets
|
org.itracker.web.ptos |
This package holds PTO's (Presentatin Transfer Objects) that are used in case normal entities from the model are not good enough.
|
org.itracker.web.util |
This package has something to do with utilities for web actions, but
please explain in detail what shall be in, or not in here.
|
Modifier and Type | Field | Description |
---|---|---|
static Comparator<User> |
User.LOGIN_COMPARATOR |
|
static Comparator<User> |
User.NAME_COMPARATOR |
Modifier and Type | Method | Description |
---|---|---|
User |
Issue.getCreator() |
|
User |
IssueSearchQuery.getCreator() |
|
User |
Issue.getOwner() |
|
User |
IssueSearchQuery.getOwner() |
|
User |
IssueActivity.getUser() |
|
User |
IssueAttachment.getUser() |
|
User |
IssueHistory.getUser() |
|
User |
Notification.getUser() |
|
User |
Permission.getUser() |
|
User |
UserPreferences.getUser() |
Modifier and Type | Method | Description |
---|---|---|
List<User> |
Project.getOwners() |
Modifier and Type | Method | Description |
---|---|---|
int |
User.LoginComparator.compare(User o1,
User o2) |
|
void |
Issue.setCreator(User creator) |
|
void |
IssueSearchQuery.setCreator(User value) |
|
void |
Issue.setOwner(User owner) |
|
void |
IssueSearchQuery.setOwner(User value) |
|
void |
IssueActivity.setUser(User user) |
|
void |
IssueAttachment.setUser(User user) |
|
void |
IssueHistory.setUser(User creator) |
|
void |
Notification.setUser(User user) |
|
void |
Permission.setUser(User user) |
|
void |
UserPreferences.setUser(User user) |
Modifier and Type | Method | Description |
---|---|---|
void |
Project.setOwners(List<User> getOwners) |
Constructor | Description |
---|---|
IssueActivity(Issue issue,
User user,
IssueActivityType type) |
Creates a new instance with a
notificationSent flag set to
false and a creation and last modified time stamp set to the
current time. |
IssueAttachment(Issue issue,
String origFileName,
String type,
String description,
long size,
User user) |
Convenience constructor.
|
IssueHistory(Issue issue,
User creator) |
|
IssueHistory(Issue issue,
User creator,
String description,
int status) |
|
Notification(User user,
Issue issue,
int role) |
Deprecated.
use Role instead int for role
|
Notification(User user,
Issue issue,
Notification.Role role) |
|
Permission(PermissionType type,
User user) |
Grants permissions on all projects to the given user.
|
Permission(PermissionType type,
User user,
Project project) |
Grants permissions on all projects to the given user.
|
Modifier and Type | Method | Description |
---|---|---|
static Map<User,Set<Notification.Role>> |
NotificationUtilities.mappedRoles(List<Notification> notifications) |
Modifier and Type | Method | Description |
---|---|---|
static boolean |
IssueUtilities.canViewIssue(Issue issue,
User user,
Map<Integer,Set<PermissionType>> permissions) |
Returns true if the user has permission to view the requested issue.
|
static Permission[] |
UserUtilities.createPermissionArray(User user,
Project project,
int[] permissions) |
|
static String |
IssueUtilities.getOwnerName(User owner,
Locale locale) |
Modifier and Type | Method | Description |
---|---|---|
static List<NameValuePair> |
Convert.usersToNameValuePairs(List<User> users) |
Converts an array of UserModels to NameValuePairs
|
Modifier and Type | Method | Description |
---|---|---|
User |
UserDAO.findByLogin(String login) |
Finds a user by login.
|
User |
UserDAOImpl.findByLogin(String login) |
|
User |
UserDAO.findByPrimaryKey(Integer userId) |
Finds the users with the given primary key.
|
User |
UserDAOImpl.findByPrimaryKey(Integer userId) |
Modifier and Type | Method | Description |
---|---|---|
List<User> |
UserDAO.findActive() |
Finds all active users.
|
List<User> |
UserDAOImpl.findActive() |
|
List<User> |
UserDAO.findAll() |
Finds all users.
|
List<User> |
UserDAOImpl.findAll() |
|
List<User> |
UserDAO.findByRegistrationType(int registrationType) |
Finds users with the given registration type.
|
List<User> |
UserDAOImpl.findByRegistrationType(int registrationType) |
|
List<User> |
UserDAO.findByStatus(int status) |
Finds users with the given status.
|
List<User> |
UserDAOImpl.findByStatus(int status) |
|
List<User> |
UserDAO.findSuperUsers() |
Finds all super users.
|
List<User> |
UserDAOImpl.findSuperUsers() |
|
List<User> |
UserDAO.findUsersForProjectByAllPermissionTypeList(Integer projectID,
Integer[] permissionTypes) |
Deprecated.
|
List<User> |
UserDAO.findUsersForProjectByAllPermissionTypeList(Integer projectID,
PermissionType[] permissionTypes) |
Finds all users assigned to a project having all of the given permissionTypes.
|
List<User> |
UserDAOImpl.findUsersForProjectByAllPermissionTypeList(Integer projectID,
Integer[] permissionTypes) |
|
List<User> |
UserDAOImpl.findUsersForProjectByAllPermissionTypeList(Integer projectID,
PermissionType[] permissionTypes) |
Modifier and Type | Method | Description |
---|---|---|
Map<Integer,Set<PermissionType>> |
UserDAO.getUsersMapOfProjectsAndPermissionTypes(User user) |
Finds of the given user the set of permission types for all projects
on which the user has permissions.
|
Map<Integer,Set<PermissionType>> |
UserDAOImpl.getUsersMapOfProjectsAndPermissionTypes(User user) |
Searches all permissions for the given user and sorts it by project.
|
List<Issue> |
IssueDAO.query(IssueSearchQuery queryModel,
User user,
Map<Integer,Set<PermissionType>> userPermissions) |
Query the list of issues that satisfies the search criteria
specified in
queryModel . |
List<Issue> |
IssueDAOImpl.query(IssueSearchQuery searchQuery,
User user,
Map<Integer,Set<PermissionType>> userPermissions) |
It doens't really make sense for this method to receive projectDAO, it's just a quick
fix for the fact that IssueSearchQuery handles ids and not objects
|
Modifier and Type | Method | Description |
---|---|---|
User |
UserService.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
This method checks the login of a user, and returns the user if authentication was successful.
|
User |
UserService.createUser(User user) |
|
User |
IssueService.getIssueCreator(Integer issueId) |
|
User |
IssueService.getIssueOwner(Integer issueId) |
|
User |
UserService.getUser(Integer userId) |
|
User |
UserService.getUserByLogin(String login) |
|
User |
UserService.updateUser(User user) |
Modifier and Type | Method | Description |
---|---|---|
List<User> |
UserService.findUsersForProjectByPermissionTypeList(Integer projectID,
PermissionType[] permissionTypes) |
Finds all users assigned to a project having all of the given permissionTypes.
|
List<User> |
UserService.getActiveUsers() |
|
List<User> |
UserService.getAllUsers() |
|
List<User> |
ProjectService.getListOfProjectOwners(Integer projectId) |
|
List<User> |
UserService.getPossibleOwners(Issue issue,
Integer projectId,
Integer userId) |
|
List<User> |
ProjectService.getProjectOwners(Integer projectId) |
|
List<User> |
UserService.getSuperUsers() |
|
List<User> |
UserService.getUsersWithAnyProjectPermission(Integer projectId,
int[] permissionTypes) |
Deprecated.
|
List<User> |
UserService.getUsersWithAnyProjectPermission(Integer projectId,
int[] permissions,
boolean activeOnly) |
Deprecated.
|
List<User> |
UserService.getUsersWithAnyProjectPermission(Integer projectId,
PermissionType[] permissions) |
This method will return a list of users with any of the supplied permission, either explicitly, or
by their role as a super user.
|
List<User> |
UserService.getUsersWithAnyProjectPermission(Integer projectId,
PermissionType[] permissions,
boolean activeOnly) |
This method will return a list of users with any of the supplied permission, either explicitly, or
by their role as a super user.
|
List<User> |
UserService.getUsersWithPermissionLocal(Integer projectId,
int permissionType) |
Deprecated.
|
List<User> |
UserService.getUsersWithPermissionLocal(Integer projectId,
PermissionType permissionType) |
This method will call local EJBs to find users with a specific permission.
|
List<User> |
UserService.getUsersWithProjectPermission(Integer projectId,
int permission) |
Deprecated.
|
List<User> |
UserService.getUsersWithProjectPermission(Integer projectId,
int[] permissions,
boolean requireAll,
boolean activeOnly) |
Deprecated.
|
List<User> |
UserService.getUsersWithProjectPermission(Integer projectId,
int permission,
boolean activeOnly) |
Deprecated.
|
List<User> |
UserService.getUsersWithProjectPermission(Integer projectId,
PermissionType permission) |
This method will return a list of users with a specific permission, either explicitly, or
by their role as a super user.
|
List<User> |
UserService.getUsersWithProjectPermission(Integer projectId,
PermissionType[] permissions,
boolean requireAll,
boolean activeOnly) |
This method will return a list of users with the supplied permission, either explicitly, or
by their role as a super user.
|
List<User> |
UserService.getUsersWithProjectPermission(Integer projectId,
PermissionType permissionType,
boolean activeOnly) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
UserService.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's password can be updated locally.
|
boolean |
UserService.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's permission information
can be updated locally.
|
boolean |
UserService.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's preference information
can be updated locally.
|
boolean |
UserService.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if a new user profile can be created within ITracker
|
boolean |
UserService.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user's core user profile information
can be updated locally.
|
boolean |
UserService.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
This method checks to see if the given user is allowed to self register.
|
boolean |
IssueService.canViewIssue(Integer issueId,
User user) |
|
boolean |
IssueService.canViewIssue(Issue issue,
User user) |
|
void |
UserService.clearOwnedProjects(User user) |
|
User |
UserService.createUser(User user) |
|
String |
UserService.generateUserPassword(User user) |
|
List<Permission> |
UserService.getUserPermissionsLocal(User user) |
This method will call local EJBs to find all permissions for a user.
|
Map<Integer,Set<PermissionType>> |
UserService.getUsersMapOfProjectIdsAndSetOfPermissionTypes(User user,
int reqSource) |
Returns a HashMap of all permissions a user has.
|
List<Issue> |
IssueService.searchIssues(IssueSearchQuery queryModel,
User user,
Map<Integer,Set<PermissionType>> userPermissions) |
|
void |
NotificationService.sendReminder(Issue issue,
User user,
String baseURL,
int issueAge) |
|
User |
UserService.updateUser(User user) |
Modifier and Type | Method | Description |
---|---|---|
User |
DefaultAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
Checks the login of a user against the user profile provided in ITracker.
|
User |
PluggableAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if a user login is successful.
|
User |
TestAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
Modifier and Type | Method | Description |
---|---|---|
List<User> |
DefaultAuthenticator.getUsersWithProjectPermission(Integer projectId,
int[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
Deprecated.
|
List<User> |
DefaultAuthenticator.getUsersWithProjectPermission(Integer projectId,
PermissionType[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
Returns the list of users for a given project.
|
List<User> |
PluggableAuthenticator.getUsersWithProjectPermission(Integer projectId,
int[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
Deprecated.
|
List<User> |
PluggableAuthenticator.getUsersWithProjectPermission(Integer projectId,
PermissionType[] permissionTypes,
boolean requireAll,
boolean activeOnly,
int reqSource) |
This method should return an array of users that have certain permissions in the
authentication system.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
DefaultAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows password updates.
|
boolean |
PluggableAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is allowed to perform
password updates on the system.
|
boolean |
TestAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
DefaultAuthenticator.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows permission updates.
|
boolean |
PluggableAuthenticator.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is allowed to perform
permissions updates on the system.
|
boolean |
DefaultAuthenticator.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows preferences updates.
|
boolean |
PluggableAuthenticator.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is allowed to perform
preferences updates on the system.
|
boolean |
DefaultAuthenticator.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows new user profiles.
|
boolean |
PluggableAuthenticator.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if a new user profile should be allowed
to be created.
|
boolean |
DefaultAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows profile updates.
|
boolean |
PluggableAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if the particular user is
allowed to perform profile updates on the system.
|
boolean |
TestAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
DefaultAuthenticator.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator always allows self registered users.
|
boolean |
PluggableAuthenticator.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to determine if a user is authorized to self register.
|
boolean |
DefaultAuthenticator.createProfile(User user,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator does not make any changes to a newly created profile.
|
boolean |
PluggableAuthenticator.createProfile(User user,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to perform any updates that are necessary in the authentication
system to support a new user.
|
List<Permission> |
DefaultAuthenticator.getUserPermissions(User user,
int reqSource) |
The DefaultAuthenticator returns a list of user permissions from the database.
|
List<Permission> |
PluggableAuthenticator.getUserPermissions(User user,
int reqSource) |
This method should return all the permissions a user has in the authentication system.
|
boolean |
DefaultAuthenticator.updateProfile(User user,
int updateType,
Object authentication,
int authType,
int reqSource) |
The DefaultAuthenticator does not make any changes to an updated profile.
|
boolean |
PluggableAuthenticator.updateProfile(User user,
int updateType,
Object authentication,
int authType,
int reqSource) |
This method should be implemented to perform any updates that are necessary in the authentication
system to support the updated user information.
|
Constructor | Description |
---|---|
ITrackerUserDetails(User model,
Collection<Permission> permissions) |
Modifier and Type | Method | Description |
---|---|---|
User |
WindowsSSONAuthenticator.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
|
protected abstract User |
WindowsSSONAuthenticator.getExternalUserInfo(String login) |
|
protected User |
WindowsSSONAuthenticatorADInfo.getExternalUserInfo(String login) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
WindowsSSONAuthenticator.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
WindowsSSONAuthenticator.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
Modifier and Type | Method | Description |
---|---|---|
User |
UserServiceImpl.checkLogin(String login,
Object authentication,
int authType,
int reqSource) |
|
User |
UserServiceImpl.createUser(User user) |
|
User |
IssueServiceImpl.getIssueCreator(Integer issueId) |
|
User |
IssueServiceImpl.getIssueOwner(Integer issueId) |
|
User |
UserServiceImpl.getUser(Integer userId) |
|
User |
UserServiceImpl.getUserByLogin(String login) |
|
User |
UserServiceImpl.updateUser(User user) |
Modifier and Type | Method | Description |
---|---|---|
List<User> |
UserServiceImpl.findUsersForProjectByPermissionTypeList(Integer projectID,
PermissionType[] permissionTypes) |
|
List<User> |
UserServiceImpl.getActiveUsers() |
|
List<User> |
UserServiceImpl.getAllUsers() |
|
List<User> |
ProjectServiceImpl.getListOfProjectOwners(Integer projectId) |
|
List<User> |
UserServiceImpl.getPossibleOwners(Issue issue,
Integer projectId,
Integer userId) |
|
List<User> |
ProjectServiceImpl.getProjectOwners(Integer projectId) |
|
List<User> |
UserServiceImpl.getSuperUsers() |
|
List<User> |
UserServiceImpl.getUsersWithAnyProjectPermission(Integer projectId,
int[] permissions) |
|
List<User> |
UserServiceImpl.getUsersWithAnyProjectPermission(Integer projectId,
int[] permissionTypes,
boolean activeOnly) |
|
List<User> |
UserServiceImpl.getUsersWithAnyProjectPermission(Integer projectId,
PermissionType[] permissionTypes) |
|
List<User> |
UserServiceImpl.getUsersWithAnyProjectPermission(Integer projectId,
PermissionType[] permissions,
boolean activeOnly) |
|
List<User> |
UserServiceImpl.getUsersWithPermissionLocal(Integer projectId,
int permissionType) |
|
List<User> |
UserServiceImpl.getUsersWithPermissionLocal(Integer projectId,
PermissionType permissionType) |
|
List<User> |
UserServiceImpl.getUsersWithProjectPermission(Integer projectId,
int permissionType) |
|
List<User> |
UserServiceImpl.getUsersWithProjectPermission(Integer projectId,
int[] permissionTypes,
boolean requireAll,
boolean activeOnly) |
|
List<User> |
UserServiceImpl.getUsersWithProjectPermission(Integer projectId,
int permissionType,
boolean activeOnly) |
|
List<User> |
UserServiceImpl.getUsersWithProjectPermission(Integer projectId,
PermissionType permission) |
|
List<User> |
UserServiceImpl.getUsersWithProjectPermission(Integer projectId,
PermissionType[] permissionTypes,
boolean requireAll,
boolean activeOnly) |
|
List<User> |
UserServiceImpl.getUsersWithProjectPermission(Integer projectId,
PermissionType permissionType,
boolean activeOnly) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
UserServiceImpl.allowPasswordUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowPermissionUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowPreferenceUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowProfileCreation(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowProfileUpdates(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
UserServiceImpl.allowRegistration(User user,
Object authentication,
int authType,
int reqSource) |
|
boolean |
IssueServiceImpl.canViewIssue(Integer issueId,
User user) |
|
boolean |
IssueServiceImpl.canViewIssue(Issue issue,
User user) |
|
void |
UserServiceImpl.clearOwnedProjects(User user) |
|
User |
UserServiceImpl.createUser(User user) |
|
String |
UserServiceImpl.generateUserPassword(User user) |
|
List<Permission> |
UserServiceImpl.getUserPermissionsLocal(User user) |
|
Map<Integer,Set<PermissionType>> |
UserServiceImpl.getUsersMapOfProjectIdsAndSetOfPermissionTypes(User user,
int reqSource) |
Deprecated.
|
List<Issue> |
IssueServiceImpl.searchIssues(IssueSearchQuery queryModel,
User user,
Map<Integer,Set<PermissionType>> userPermissions) |
|
void |
NotificationServiceImpl.sendReminder(Issue issue,
User user,
String baseURL,
int issueAge) |
|
User |
UserServiceImpl.updateUser(User user) |
Modifier and Type | Method | Description |
---|---|---|
Issue |
IssueForm.addAttachment(Issue issue,
Project project,
User user,
ITrackerServices services,
org.apache.struts.action.ActionMessages messages) |
Adds an attachment to issue.
|
void |
IssueForm.applyLimitedFields(Issue issue,
Project project,
User user,
Map<Integer,Set<PermissionType>> userPermissionsMap,
Locale locale,
IssueService issueService) |
|
Issue |
IssueForm.processFullEdit(Issue issue,
Project project,
User user,
Map<Integer,Set<PermissionType>> userPermissions,
Locale locale,
IssueService issueService,
org.apache.struts.action.ActionMessages errors) |
|
Issue |
IssueForm.processLimitedEdit(Issue issue,
Project project,
User user,
Map<Integer,Set<PermissionType>> userPermissionsMap,
Locale locale,
IssueService issueService,
org.apache.struts.action.ActionMessages messages) |
Modifier and Type | Method | Description |
---|---|---|
User |
UserPTO.getUser() |
Modifier and Type | Method | Description |
---|---|---|
List<User> |
IssuePTO.getPossibleOwners() |
Modifier and Type | Method | Description |
---|---|---|
void |
IssuePTO.setPossibleOwners(List<User> users) |
Constructor | Description |
---|---|
UserPTO(User user,
Date lastAccess) |
Modifier and Type | Method | Description |
---|---|---|
static User |
LoginUtilities.getCurrentUser(javax.servlet.http.HttpServletRequest request) |
Deprecated.
|
static User |
RequestHelper.getCurrentUser(javax.servlet.http.HttpSession session) |
|
static User |
LoginUtilities.setupSession(String login,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response) |
|
static User |
LoginUtilities.setupSession(User user,
String encPassword,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response) |
Modifier and Type | Method | Description |
---|---|---|
static List<NameValuePair> |
EditIssueActionUtil.getAssignableIssueOwnersList(Issue issue,
Project project,
User currUser,
Locale locale,
UserService userService,
Map<Integer,Set<PermissionType>> userPermissions) |
This method will obtain and build a list of possible owners for the
webpages to display and the operator to choose from.
|
static Map<Integer,List<NameValuePair>> |
EditIssueActionUtil.getListOptions(javax.servlet.http.HttpServletRequest request,
Issue issue,
List<NameValuePair> ownersList,
Map<Integer,Set<PermissionType>> userPermissions,
Project project,
User currUser) |
|
static void |
ImportExportUtilities.getUserXML(org.dom4j.io.XMLWriter writer,
User user) |
|
static String |
ImportExportUtilities.getUserXML(User user) |
Generates an XML block that encapsulates a user for import or export.
|
static User |
LoginUtilities.setupSession(User user,
String encPassword,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response) |
Copyright © 2002–2019 itracker. All rights reserved.