Uses of Class
org.apache.guacamole.form.Form
-
Packages that use Form Package Description org.apache.guacamole.net.auth Provides classes which can be used to extend or replace the authentication functionality of the Guacamole web application.org.apache.guacamole.protocols -
-
Uses of Form in org.apache.guacamole.net.auth
Methods in org.apache.guacamole.net.auth that return types with arguments of type Form Modifier and Type Method Description Collection<Form>
AbstractUserContext. getConnectionAttributes()
Retrieves a collection of all attributes applicable to connections.Collection<Form>
DelegatingUserContext. getConnectionAttributes()
Collection<Form>
UserContext. getConnectionAttributes()
Retrieves a collection of all attributes applicable to connections.Collection<Form>
AbstractUserContext. getConnectionGroupAttributes()
Retrieves a collection of all attributes applicable to connection groups.Collection<Form>
DelegatingUserContext. getConnectionGroupAttributes()
Collection<Form>
UserContext. getConnectionGroupAttributes()
Retrieves a collection of all attributes applicable to connection groups.Collection<Form>
AbstractUserContext. getSharingProfileAttributes()
Retrieves a collection of all attributes applicable to sharing profiles.Collection<Form>
DelegatingUserContext. getSharingProfileAttributes()
Collection<Form>
UserContext. getSharingProfileAttributes()
Retrieves a collection of all attributes applicable to sharing profiles.Collection<Form>
AbstractUserContext. getUserAttributes()
Retrieves a collection of all attributes applicable to users.Collection<Form>
DelegatingUserContext. getUserAttributes()
Collection<Form>
UserContext. getUserAttributes()
Retrieves a collection of all attributes applicable to users.Collection<Form>
AbstractUserContext. getUserGroupAttributes()
Retrieves a collection of all attributes applicable to user groups.Collection<Form>
DelegatingUserContext. getUserGroupAttributes()
Collection<Form>
UserContext. getUserGroupAttributes()
Retrieves a collection of all attributes applicable to user groups. -
Uses of Form in org.apache.guacamole.protocols
Methods in org.apache.guacamole.protocols that return types with arguments of type Form Modifier and Type Method Description Collection<Form>
ProtocolInfo. getConnectionForms()
Returns a mutable collection of forms describing all known parameters for a connection using this protocol.Collection<Form>
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 Form Modifier and Type Method Description void
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 Form Constructor Description ProtocolInfo(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.
-