GUACAMOLE-1298: Migrate to centralized declarations of common dependencies.

This commit is contained in:
Michael Jumper
2021-03-25 19:58:53 -07:00
parent d4e3d8c98f
commit 53fe6e34f8
35 changed files with 306 additions and 127 deletions

View File

@@ -20,7 +20,6 @@
package org.apache.guacamole.auth.duo.form;
import org.apache.guacamole.form.Field;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* A custom field type which uses the DuoWeb API to produce a signed response
@@ -81,8 +80,7 @@ public class DuoSignedResponseField extends Field {
* @return
* The hostname of the DuoWeb API endpoint.
*/
@JsonProperty("apiHost")
public String getAPIHost() {
public String getApiHost() {
return apiHost;
}