Uses of Class
org.cilogon.oauth2.servlet.storage.user.User
-
Packages that use User Package Description org.cilogon.oauth2.admin Extensions to OA4MP's CLI (Command Line Interface).org.cilogon.oauth2.servlet.loader Package that reads the CILogon configuration and creates the runtime environment (CILogonOA2ServiceEnvironment
from that.org.cilogon.oauth2.servlet.servlet Servlets used in CILogon that are not in OA4MP, viz., the database service.org.cilogon.oauth2.servlet.storage.archiveUser The archived user store.org.cilogon.oauth2.servlet.storage.user The user store for CILogon.org.cilogon.oauth2.servlet.util Various utilities needed by the stores.org.cilogon.qdl.module.storage QDL Modules that allow for access to the stores specific to CILogon, such as users. -
-
Uses of User in org.cilogon.oauth2.admin
Methods in org.cilogon.oauth2.admin that return User Modifier and Type Method Description protected User
UserStoreCommands. createEntry(int magicNumber)
protected User
ArchivedUserStoreCommands. findUser(edu.uiuc.ncsa.security.util.cli.InputLine inputLine)
Methods in org.cilogon.oauth2.admin with parameters of type User Modifier and Type Method Description protected void
UserStoreCommands. getEPPN(User user)
protected void
UserStoreCommands. getEPTID(User user)
protected void
UserStoreCommands. getOpenID(User user)
protected void
UserStoreCommands. getOpenIDConnect(User user)
protected void
UserStoreCommands. getRemoteUser(User user)
protected void
ArchivedUserStoreCommands. printUsers(int counter, User user)
-
Uses of User in org.cilogon.oauth2.servlet.loader
Methods in org.cilogon.oauth2.servlet.loader that return User Modifier and Type Method Description User
OA2CILogonStoreLoader.CILU2Provider. get(boolean newIdentifier)
Methods in org.cilogon.oauth2.servlet.loader that return types with arguments of type User Modifier and Type Method Description edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User>
CILOA2ConfigurationLoader. getUP()
-
Uses of User in org.cilogon.oauth2.servlet.servlet
Methods in org.cilogon.oauth2.servlet.servlet that return User Modifier and Type Method Description protected User
AbstractDBService. findUser(UserMultiID userMultiKey, String idp)
Methods in org.cilogon.oauth2.servlet.servlet with parameters of type User Modifier and Type Method Description protected void
AbstractDBService. userLogic(User u, UserMultiID k)
This method tries to determine what id to use to find the user.protected void
AbstractDBService. writeUser(User user, int statusCode, javax.servlet.http.HttpServletResponse response)
Utility to take a user and put it in the response, with all the appropriate fields.protected void
AbstractDBService. writeUser(User user, TwoFactorInfo tfi, int statusCode, javax.servlet.http.HttpServletResponse response)
-
Uses of User in org.cilogon.oauth2.servlet.storage.archiveUser
Fields in org.cilogon.oauth2.servlet.storage.archiveUser declared as User Modifier and Type Field Description User
ArchivedUser. user
Methods in org.cilogon.oauth2.servlet.storage.archiveUser that return User Modifier and Type Method Description User
ArchivedUser. getUser()
Methods in org.cilogon.oauth2.servlet.storage.archiveUser with parameters of type User Modifier and Type Method Description void
ArchivedUser. setUser(User user)
-
Uses of User in org.cilogon.oauth2.servlet.storage.user
Classes in org.cilogon.oauth2.servlet.storage.user with type parameters of type User Modifier and Type Class Description class
UserConverter<T extends User>
Created by Jeff Gaynor
on 4/16/12 at 5:34 PMMethods in org.cilogon.oauth2.servlet.storage.user that return User Modifier and Type Method Description User
User. clone()
Returns a completely new user whose information is identical to this user.User
CILSQLUserStore. create()
User
CILSQLUserStore. create(boolean newSerialString)
User
MemoryUserStore. create()
User
MemoryUserStore. create(boolean newIdentifier)
User
UserFileStore. create()
User
UserFileStore. create(boolean newIdentifier)
User
UserStore. create(boolean newSerialString)
Create a user, optionally with a new serial string.User
CILSQLUserStore. createAndRegisterUser(UserMultiID userMultiKey, String idP, String idPDisplayName, String firstName, String lastName, String email, String affiliation, String displayName, String organizationalUnit)
User
MemoryUserStore. createAndRegisterUser(UserMultiID userMultiKey, String idP, String idPDisplayName, String firstName, String lastName, String email, String affiliation, String displayName, String organizationalUnit)
User
UserFileStore. createAndRegisterUser(UserMultiID userMultiKey, String idP, String idPDisplayName, String firstName, String lastName, String email, String affiliation, String displayName, String organizationalUnit)
User
UserStore. createAndRegisterUser(UserMultiID userMultiKey, String idP, String idPDisplayName, String firstName, String lastName, String email, String affiliation, String displayName, String organizationalUnit)
Create a user from all the given possible information.User
CILSQLUserStore. get(Object o)
API-specific.User
CILSQLUserStore. get(String remoteUser, String idP)
API-specific get by remoteUser and IDP.User
MemoryUserStore. get(Object key)
User
UserFileStore. get(Object key)
User
UserProvider. get(boolean newIdentifier)
This will make a new user object.User
MemoryUserStore. put(edu.uiuc.ncsa.security.core.Identifier key, User value)
Methods in org.cilogon.oauth2.servlet.storage.user that return types with arguments of type User Modifier and Type Method Description Set<Map.Entry<edu.uiuc.ncsa.security.core.Identifier,User>>
CILSQLUserStore. entrySet()
Collection<User>
CILSQLUserStore. get(UserMultiID userMultiKey, String idP)
Collection<User>
MemoryUserStore. get(UserMultiID userMultiKey, String idP)
Collection<User>
UserFileStore. get(UserMultiID userMultiKey, String idP)
Collection<User>
UserStore. get(UserMultiID userMultiKey, String idP)
The remote user and idp together form a composite key for access.List<User>
MemoryUserStore. getMostRecent(int n, List<String> attributes)
List<User>
UserFileStore. getMostRecent(int n, List<String> attributes)
edu.uiuc.ncsa.security.core.XMLConverter<User>
MemoryUserStore. getXMLConverter()
Methods in org.cilogon.oauth2.servlet.storage.user with parameters of type User Modifier and Type Method Description boolean
User. compare(User user)
This compares the 6 major keys of the given user to this.void
User. copyTo(User u2, boolean copyID)
Copy this user into the given user.String[]
DNState. getDNNames(User user)
User
MemoryUserStore. put(edu.uiuc.ncsa.security.core.Identifier key, User value)
void
UserFileStore. realSave(boolean checkExists, User t)
void
MemoryUserStore. save(User value)
void
UserFileStore. save(User t)
void
CILSQLUserStore. update(User user)
Update the user.void
MemoryUserStore. update(User value)
void
UserFileStore. update(User t)
void
CILSQLUserStore. updateCheckSerialString(User user, boolean keepSerialID)
void
MemoryUserStore. updateCheckSerialString(User user, boolean noNewSerialID)
void
UserFileStore. updateCheckSerialString(User user, boolean noNewSerialID)
void
UserStore. updateCheckSerialString(User user, boolean noNewSerialID)
Save the current user but do not change the serial identifier.protected void
MemoryUserStore. updateIndex(PersonName personName, String idp, User user, Map<String,User> index)
Method parameters in org.cilogon.oauth2.servlet.storage.user with type arguments of type User Modifier and Type Method Description protected void
MemoryUserStore. fromIndex(PersonName personName, String idp, Map<String,User> index, Map<edu.uiuc.ncsa.security.core.Identifier,User> users)
protected void
MemoryUserStore. updateIndex(PersonName personName, String idp, User user, Map<String,User> index)
Constructor parameters in org.cilogon.oauth2.servlet.storage.user with type arguments of type User Constructor Description CILFSUserStoreProvider(org.apache.commons.configuration.tree.ConfigurationNode config, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User> userProvider, edu.uiuc.ncsa.security.storage.data.MapConverter converter, Incrementable incrementable)
CILSQLUserStore(edu.uiuc.ncsa.security.storage.sql.ConnectionPool connectionPool, edu.uiuc.ncsa.security.storage.sql.internals.Table table, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User> idp, edu.uiuc.ncsa.security.storage.data.MapConverter converter, Incrementable incrementable)
CILSQLUserStoreProvider(org.apache.commons.configuration.tree.ConfigurationNode config, edu.uiuc.ncsa.security.storage.sql.ConnectionPoolProvider<? extends edu.uiuc.ncsa.security.storage.sql.ConnectionPool> cpp, String type, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User> userProvider, edu.uiuc.ncsa.security.storage.data.MapConverter converter, Incrementable incrementable)
MemoryUserStore(edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User> up, Incrementable incrementable)
MultiUserStoreProvider(org.apache.commons.configuration.tree.ConfigurationNode cn, boolean disableDefaultStore, edu.uiuc.ncsa.security.core.util.MyLoggingFacade loggingFacade, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User> userProvider, Incrementable incrementable)
UserFileStore(File storeDirectory, File indexDirectory, edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User> up, edu.uiuc.ncsa.security.storage.data.MapConverter converter, boolean removeEmptyFiles, Incrementable incrementable, boolean removeFailedFiles)
-
Uses of User in org.cilogon.oauth2.servlet.util
Methods in org.cilogon.oauth2.servlet.util that return User Modifier and Type Method Description User
DBServiceSerializer. deserializeUser(InputStream is, User user)
This takes a user as the argument since the user requires a reference to the namespace resolution machinery of the server environment.Methods in org.cilogon.oauth2.servlet.util that return types with arguments of type User Modifier and Type Method Description edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<User>
CILogonConfiguration. getUP()
Methods in org.cilogon.oauth2.servlet.util with parameters of type User Modifier and Type Method Description User
DBServiceSerializer. deserializeUser(InputStream is, User user)
This takes a user as the argument since the user requires a reference to the namespace resolution machinery of the server environment.protected void
DBServiceSerializer. doUserSerialization(PrintWriter w, User user)
Override this method if you have to extend the user.protected static int
DNUtil. getCase(User user)
protected static String
DNUtil. getDefaultDN(User user, boolean returnEmail)
static String
DNUtil. getDN(User user, AbstractCILServiceTransaction transaction, boolean returnEmail)
protected static String
DNUtil. getFNLDN(User user, boolean returnEmail)
protected static String
DNUtil. getLIGODN(User user, boolean returnEmail)
edu.uiuc.ncsa.security.storage.XMLMap
DBServiceClient. getUser(User user)
Convenience method to get a user with new information.void
DBServiceSerializer. serialize(PrintWriter w, User user, int statusCode)
void
DBServiceSerializer. serialize(PrintWriter w, User user, TwoFactorInfo tfi, int statusCode)
protected void
DBServiceSerializer. setUserField(User user, String head, String tail)
-
Uses of User in org.cilogon.qdl.module.storage
Classes in org.cilogon.qdl.module.storage with type parameters of type User Modifier and Type Class Description class
UserStemMC<V extends User>
Created by Jeff Gaynor
on 12/22/20 at 2:54 PM
-