Uses of Class
org.apache.guacamole.form.Form
Packages that use Form
Package
Description
Provides classes which can be used to extend or replace the authentication
functionality of the Guacamole web application.
-
Uses of Form in org.apache.guacamole.net.auth
Methods in org.apache.guacamole.net.auth that return types with arguments of type FormModifier and TypeMethodDescriptionAbstractUserContext.getConnectionAttributes()
Retrieves a collection of all attributes applicable to connections.DelegatingUserContext.getConnectionAttributes()
UserContext.getConnectionAttributes()
Retrieves a collection of all attributes applicable to connections.AbstractUserContext.getConnectionGroupAttributes()
Retrieves a collection of all attributes applicable to connection groups.DelegatingUserContext.getConnectionGroupAttributes()
UserContext.getConnectionGroupAttributes()
Retrieves a collection of all attributes applicable to connection groups.AbstractUserContext.getSharingProfileAttributes()
Retrieves a collection of all attributes applicable to sharing profiles.DelegatingUserContext.getSharingProfileAttributes()
UserContext.getSharingProfileAttributes()
Retrieves a collection of all attributes applicable to sharing profiles.AbstractUserContext.getUserAttributes()
Retrieves a collection of all attributes applicable to users.DelegatingUserContext.getUserAttributes()
UserContext.getUserAttributes()
Retrieves a collection of all attributes applicable to users.AbstractUserContext.getUserGroupAttributes()
Retrieves a collection of all attributes applicable to user groups.DelegatingUserContext.getUserGroupAttributes()
UserContext.getUserGroupAttributes()
Retrieves a collection of all attributes applicable to user groups.DelegatingUserContext.getUserPreferenceAttributes()
default Collection
<Form> UserContext.getUserPreferenceAttributes()
Retrieves a collection of user attributes, specific to the user preferences page in the UI. -
Uses of Form in org.apache.guacamole.protocols
Methods in org.apache.guacamole.protocols that return types with arguments of type FormModifier and TypeMethodDescriptionProtocolInfo.getConnectionForms()
Returns a mutable collection of forms describing all known parameters for a connection using this protocol.ProtocolInfo.getSharingProfileForms()
Returns a mutable collection of forms describing all known parameters relevant to a sharing profile whose primary connection uses this protocol.Method parameters in org.apache.guacamole.protocols with type arguments of type FormModifier and TypeMethodDescriptionvoid
ProtocolInfo.setConnectionForms
(Collection<Form> connectionForms) Sets the collection of forms describing all known parameters for a connection using this protocol.void
ProtocolInfo.setSharingProfileForms
(Collection<Form> sharingProfileForms) Sets the collection of forms describing all known parameters relevant to a sharing profile whose primary connection uses this protocol.Constructor parameters in org.apache.guacamole.protocols with type arguments of type FormModifierConstructorDescriptionProtocolInfo
(String name, Collection<Form> forms) Creates a new ProtocolInfo having the given name and forms.ProtocolInfo
(String name, Collection<Form> connectionForms, Collection<Form> sharingProfileForms) Creates a new ProtocolInfo having the given name and forms.