Uses of Class
org.apache.commons.vfs2.UserAuthenticationData.Type
-
Packages that use UserAuthenticationData.Type Package Description org.apache.commons.vfs2 The public VFS API.org.apache.commons.vfs2.auth VFS Authentication implementationorg.apache.commons.vfs2.provider.ftp The FTP File Provider.org.apache.commons.vfs2.provider.http4 The HTTP4 File Providerorg.apache.commons.vfs2.provider.sftp The SFTP Provider.org.apache.commons.vfs2.util Utility classes used by the VFS. -
-
Uses of UserAuthenticationData.Type in org.apache.commons.vfs2
Fields in org.apache.commons.vfs2 declared as UserAuthenticationData.Type Modifier and Type Field Description static UserAuthenticationData.Type
UserAuthenticationData. DOMAIN
The user's domain.static UserAuthenticationData.Type
UserAuthenticationData. PASSWORD
The password.static UserAuthenticationData.Type
UserAuthenticationData. USERNAME
The user name.Fields in org.apache.commons.vfs2 with type parameters of type UserAuthenticationData.Type Modifier and Type Field Description private java.util.Map<UserAuthenticationData.Type,char[]>
UserAuthenticationData. authenticationData
The authentication data.Methods in org.apache.commons.vfs2 with parameters of type UserAuthenticationData.Type Modifier and Type Method Description int
UserAuthenticationData.Type. compareTo(UserAuthenticationData.Type o)
char[]
UserAuthenticationData. getData(UserAuthenticationData.Type type)
Gets a data from the collection.UserAuthenticationData
UserAuthenticator. requestAuthentication(UserAuthenticationData.Type[] types)
Queries the given type from the user.void
UserAuthenticationData. setData(UserAuthenticationData.Type type, char[] data)
Sets a data to this collection. -
Uses of UserAuthenticationData.Type in org.apache.commons.vfs2.auth
Methods in org.apache.commons.vfs2.auth with parameters of type UserAuthenticationData.Type Modifier and Type Method Description UserAuthenticationData
StaticUserAuthenticator. requestAuthentication(UserAuthenticationData.Type[] types)
-
Uses of UserAuthenticationData.Type in org.apache.commons.vfs2.provider.ftp
Fields in org.apache.commons.vfs2.provider.ftp declared as UserAuthenticationData.Type Modifier and Type Field Description static UserAuthenticationData.Type[]
FtpFileProvider. AUTHENTICATOR_TYPES
Authenticator types. -
Uses of UserAuthenticationData.Type in org.apache.commons.vfs2.provider.http4
Fields in org.apache.commons.vfs2.provider.http4 declared as UserAuthenticationData.Type Modifier and Type Field Description (package private) static UserAuthenticationData.Type[]
Http4FileProvider. AUTHENTICATOR_TYPES
Authenticator information. -
Uses of UserAuthenticationData.Type in org.apache.commons.vfs2.provider.sftp
Fields in org.apache.commons.vfs2.provider.sftp declared as UserAuthenticationData.Type Modifier and Type Field Description static UserAuthenticationData.Type[]
SftpFileProvider. AUTHENTICATOR_TYPES
Authentication types. -
Uses of UserAuthenticationData.Type in org.apache.commons.vfs2.util
Methods in org.apache.commons.vfs2.util with parameters of type UserAuthenticationData.Type Modifier and Type Method Description static UserAuthenticationData
UserAuthenticatorUtils. authenticate(FileSystemOptions options, UserAuthenticationData.Type[] authenticatorTypes)
Authenticates if there is an authenticator, else returns null.static UserAuthenticationData
UserAuthenticatorUtils. authenticate(UserAuthenticator auth, UserAuthenticationData.Type[] authenticatorTypes)
Authenticates if there is an authenticator, else returns null.static char[]
UserAuthenticatorUtils. getData(UserAuthenticationData data, UserAuthenticationData.Type type, char[] overriddenValue)
Gets data of given type from the UserAuthenticationData or null if there is no data or data of this type available.
-