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 TypeClassDescriptionclassRepresents a field with strictly one possible value.classRepresents a date field.classRepresents a text field which may contain an email address.classRepresents an arbitrary field with a finite, enumerated set of possible values.classRepresents a language field.classRepresents a field which can contain multiple lines of text.classRepresents a field which may contain only integer values.classRepresents a field which contains sensitive text information related to authenticating a user.classA Guacamole field that redirects a user to another page.classRepresents a terminal color scheme field.classRepresents a basic text field.classRepresents a time field.classRepresents a time zone field.classRepresents 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 TypeMethodDescriptionvoidForm.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 FieldCredentialsInfo.PASSWORDA field describing the password HTTP parameter expected by Guacamole during login, if passwords are being used.static final FieldCredentialsInfo.USERNAMEA 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.