Uses of Class
ccc.api.core.User

Packages that use User
ccc.api.core   
ccc.api.jaxrs   
ccc.client.actions   
ccc.client.core   
ccc.client.gwt.binding   
ccc.client.gwt.core   
ccc.client.gwt.remoting   
ccc.client.gwt.views.gxt   
ccc.client.gwt.widgets   
ccc.client.presenters   
ccc.commands Commands available in CCC. 
ccc.domain The core domain model for CCC. 
ccc.migration Classes for migration of CCC6 content to CCC7. 
ccc.migration.ccc6.handlers SQL queries, used to extract data from CC6 for migration. 
ccc.plugins.s11n.json   
ccc.services.ejb3 EJB3 implementation of the CCC API. 
 

Uses of User in ccc.api.core
 

Methods in ccc.api.core that return User
 User Users.create(User delta)
          Create a new user in the system.
 User Users.retrieve(java.util.UUID userId)
          Retrieve a user.
 User Users.retrieveCurrent()
          Returns currently logged in user.
 User User.setEmail(java.lang.String email)
          Mutator.
 User User.setGroups(java.util.Set<java.util.UUID> groups)
          Mutator.
 User User.setId(java.util.UUID id)
          Mutator.
 User User.setMetadata(java.util.Map<java.lang.String,java.lang.String> metadata)
          Mutator.
 User User.setName(java.lang.String name)
          Mutator.
 User User.setPassword(java.lang.String password)
          Mutator.
 User User.setUsername(Username username)
          Mutator.
 User Users.userByLegacyId(java.lang.String legacyId)
          Look up the user for a specified legacy id.
 

Methods in ccc.api.core that return types with arguments of type User
 PagedCollection<User> Users.query(java.lang.String username, java.lang.String email, java.lang.String groups, java.lang.String metadataKey, java.lang.String metadataValue, java.lang.String sort, SortOrder order, int pageNo, int pageSize)
          Query users.
 

Methods in ccc.api.core with parameters of type User
 User Users.create(User delta)
          Create a new user in the system.
 void Users.update(java.util.UUID userId, User delta)
          Updates the user in the system.
 void Users.updateCurrent(User user)
          Update the email and/or password for the current user.
 void Users.updateUserPassword(java.util.UUID userId, User user)
          Update the password for the specified user.
 

Uses of User in ccc.api.jaxrs
 

Methods in ccc.api.jaxrs that return User
 User UsersImpl.create(User user)
          Create a new user in the system.
 User UsersImpl.retrieve(java.util.UUID userId)
          Retrieve a user.
 User UsersImpl.retrieveCurrent()
          Returns currently logged in user.
 User UsersImpl.userByLegacyId(java.lang.String legacyId)
          Look up the user for a specified legacy id.
 

Methods in ccc.api.jaxrs that return types with arguments of type User
 PagedCollection<User> UsersImpl.query(java.lang.String username, java.lang.String email, java.lang.String groups, java.lang.String metadataKey, java.lang.String metadataValue, java.lang.String sort, SortOrder order, int pageNo, int pageSize)
          Query users.
 

Methods in ccc.api.jaxrs with parameters of type User
 User UsersImpl.create(User user)
          Create a new user in the system.
 void UsersImpl.update(java.util.UUID userId, User delta)
          Updates the user in the system.
 void UsersImpl.updateCurrent(User user)
          Update the email and/or password for the current user.
 void UsersImpl.updateUserPassword(java.util.UUID userId, User pu)
          Update the password for the specified user.
 

Uses of User in ccc.client.actions
 

Constructors in ccc.client.actions with parameters of type User
CreateUserAction(User userDelta)
          Constructor.
 

Uses of User in ccc.client.core
 

Fields in ccc.client.core with type parameters of type User
static PagedCollection<User> InternalServices.USERS
           
 

Methods in ccc.client.core that return User
 User Globals.currentUser()
          Accessor.
 

Methods in ccc.client.core that return types with arguments of type User
 PagedCollection<User> Globals.users()
          TODO: Add a description for this method.
 

Methods in ccc.client.core with parameters of type User
 void Globals.currentUser(User user)
          Mutator.
 

Uses of User in ccc.client.gwt.binding
 

Methods in ccc.client.gwt.binding with parameters of type User
static com.extjs.gxt.ui.client.data.BeanModel DataBinding.bindUserSummary(User user)
          Create model data object for a user.
 

Method parameters in ccc.client.gwt.binding with type arguments of type User
static java.util.List<com.extjs.gxt.ui.client.data.BeanModel> DataBinding.bindUserSummary(java.util.Collection<User> result)
          Create model data objects for a collection of user summaries.
 

Uses of User in ccc.client.gwt.core
 

Methods in ccc.client.gwt.core that return User
 User GlobalsImpl.currentUser()
          Accessor.
 

Methods in ccc.client.gwt.core that return types with arguments of type User
 PagedCollection<User> GlobalsImpl.users()
          TODO: Add a description for this method.
 

Methods in ccc.client.gwt.core with parameters of type User
 void GlobalsImpl.currentUser(User user)
          Mutator.
 

Method parameters in ccc.client.gwt.core with type arguments of type User
static void GlobalsImpl.users(PagedCollection<User> users)
          Set the collection for managing users.
 

Uses of User in ccc.client.gwt.remoting
 

Methods in ccc.client.gwt.remoting with parameters of type User
protected abstract  void GetUserAction.execute(User user)
          Handle the result of a successful call.
 

Method parameters in ccc.client.gwt.remoting with type arguments of type User
protected abstract  void ListUsersAction.execute(PagedCollection<User> users)
          Handle the result of a successful call.
 

Constructors in ccc.client.gwt.remoting with parameters of type User
DrawMainWindowAction(User user)
          Constructor.
OpenEditUserDialogAction(User user, UserTable userTable, java.util.Collection<Group> groups)
          Constructor.
UpdateCurrentUserAction(User userDetails)
          Constructor.
UpdateUserAction(User userDetails)
          Constructor.
UpdateUserPasswordAction(User user)
          Constructor.
 

Uses of User in ccc.client.gwt.views.gxt
 

Constructors in ccc.client.gwt.views.gxt with parameters of type User
EditUserDialog(User userDTO, UserTable userTable, java.util.Collection<Group> allGroups)
          Constructor.
EditUserPwDialog(User userDTO)
          Constructor.
UserMetadataDialog(User user)
          Constructor.
 

Uses of User in ccc.client.gwt.widgets
 

Constructors in ccc.client.gwt.widgets with parameters of type User
MainMenu(User user)
          Constructor.
ResourceNavigator(LeftRightPane view, ResourceSummary root, User user)
          Constructor.
 

Uses of User in ccc.client.presenters
 

Methods in ccc.client.presenters with parameters of type User
protected  void CreateUserPresenter.unbind(User dto)
          Extract data from the view into a DTO.
 

Uses of User in ccc.commands
 

Methods in ccc.commands with parameters of type User
 UserEntity CreateUserCommand.execute(UserEntity actor, java.util.Date happenedOn, User delta)
          Create new user.
 

Constructors in ccc.commands with parameters of type User
UpdateCurrentUserCommand(IRepositoryFactory repoFactory, java.util.UUID userId, User delta)
          Constructor.
UpdateUserCommand(IRepositoryFactory repoFactory, java.util.UUID userId, User delta)
          Constructor.
 

Uses of User in ccc.domain
 

Methods in ccc.domain that return User
 User UserEntity.toDto()
          Convert a user to a DTO.
 

Methods in ccc.domain that return types with arguments of type User
static java.util.List<User> UserEntity.map(java.util.Collection<UserEntity> users)
          Create summaries for a list of users.
 

Uses of User in ccc.migration
 

Methods in ccc.migration that return types with arguments of type User
 java.util.Map<java.lang.Integer,User> LegacyDBQueries.selectUsers()
          Returns a list of users.
 

Uses of User in ccc.migration.ccc6.handlers
 

Methods in ccc.migration.ccc6.handlers that return types with arguments of type User
 java.util.Map<java.lang.Integer,User> AllUsersSelector.handle(java.sql.ResultSet rs)
          
 

Uses of User in ccc.plugins.s11n.json
 

Methods in ccc.plugins.s11n.json that return User
 User UserSerializer.read(Json json)
          Deserialize from a representation.
 

Methods in ccc.plugins.s11n.json with parameters of type User
 Json UserSerializer.write(Json json, User instance)
          Serialize to representation.
 

Uses of User in ccc.services.ejb3
 

Methods in ccc.services.ejb3 that return User
 User UsersEJB.create(User delta)
          Create a new user in the system.
 User UsersEJB.retrieve(java.util.UUID userId)
          Retrieve a user.
 User UsersEJB.retrieveCurrent()
          Returns currently logged in user.
 User UsersEJB.userByLegacyId(java.lang.String legacyId)
          Look up the user for a specified legacy id.
 

Methods in ccc.services.ejb3 that return types with arguments of type User
 PagedCollection<User> UsersEJB.query(java.lang.String username, java.lang.String email, java.lang.String groups, java.lang.String metadataKey, java.lang.String metadataValue, java.lang.String sort, SortOrder order, int pageNo, int pageSize)
          Query users.
 

Methods in ccc.services.ejb3 with parameters of type User
 User UsersEJB.create(User delta)
          Create a new user in the system.
 void UsersEJB.update(java.util.UUID userId, User delta)
          Updates the user in the system.
 void UsersEJB.updateCurrent(User user)
          Update the email and/or password for the current user.
 void UsersEJB.updateUserPassword(java.util.UUID userId, User user)
          Update the password for the specified user.
 



Copyright © 2010. All Rights Reserved.