Uses of Class
org.apache.guacamole.form.Field
Packages that use Field
Package
Description
Provides classes which describe the contents and semantics of forms which
may be presented to the user.
-
Uses of Field in org.apache.guacamole.form
Subclasses of Field in org.apache.guacamole.formModifier and TypeClassDescriptionclass
Represents a field with strictly one possible value.class
Represents a date field.class
Represents a text field which may contain an email address.class
Represents an arbitrary field with a finite, enumerated set of possible values.class
Represents a language field.class
Represents a field which can contain multiple lines of text.class
Represents a field which may contain only integer values.class
Represents a field which contains sensitive text information related to authenticating a user.class
A Guacamole field that redirects a user to another page.class
Represents a terminal color scheme field.class
Represents a basic text field.class
Represents a time field.class
Represents a time zone field.class
Represents a text field which will contain the uniquely-identifying name of a user.Methods in org.apache.guacamole.form that return types with arguments of type FieldModifier and TypeMethodDescriptionForm.getFields()
Returns a mutable collection of the fields associated with this form.Method parameters in org.apache.guacamole.form with type arguments of type FieldModifier and TypeMethodDescriptionvoid
Form.setFields
(Collection<Field> fields) Sets the collection of fields associated with this form.Constructor parameters in org.apache.guacamole.form with type arguments of type FieldModifierConstructorDescriptionForm
(String name, Collection<Field> fields) Creates a new Form object having the given name and containing the given fields. -
Uses of Field in org.apache.guacamole.net.auth.credentials
Fields in org.apache.guacamole.net.auth.credentials declared as FieldModifier and TypeFieldDescriptionstatic final Field
CredentialsInfo.PASSWORD
A field describing the password HTTP parameter expected by Guacamole during login, if passwords are being used.static final Field
CredentialsInfo.USERNAME
A field describing the username HTTP parameter expected by Guacamole during login, if usernames are being used.Methods in org.apache.guacamole.net.auth.credentials that return types with arguments of type FieldModifier and TypeMethodDescriptionCredentialsInfo.getFields()
Returns all fields required for valid credentials as described by this object.Methods in org.apache.guacamole.net.auth.credentials with parameters of type FieldModifier and TypeMethodDescriptionReturns the value defined by this UserCrendentials object for the given field.UserCredentials.removeValue
(Field field) Removes (undefines) the value of the given field returning its previous value.Sets the value of the given field.Constructor parameters in org.apache.guacamole.net.auth.credentials with type arguments of type FieldModifierConstructorDescriptionCredentialsInfo
(Collection<Field> fields) Creates a new CredentialsInfo object which requires the given fields for any conforming credentials.UserCredentials
(Collection<Field> fields) Creates a new UserCredentials object which requires the given fields but does not yet have any defined values.UserCredentials
(Collection<Field> fields, Map<String, String> values) Creates a new UserCredentials object which requires the given fields and values.