GUACAMOLE-678: Rename UriGuacamoleProperty to URIGuacamoleProperty.

This commit is contained in:
Virtually Nick
2019-03-24 15:58:59 -04:00
parent 704c7b6d81
commit b6e7fc9cfc
3 changed files with 13 additions and 13 deletions

View File

@@ -19,7 +19,7 @@
package org.apache.guacamole.auth.cas.conf;
import org.apache.guacamole.properties.UriGuacamoleProperty;
import org.apache.guacamole.properties.URIGuacamoleProperty;
/**
* Provides properties required for use of the CAS authentication provider.
@@ -36,8 +36,8 @@ public class CASGuacamoleProperties {
/**
* The authorization endpoint (URI) of the CAS service.
*/
public static final UriGuacamoleProperty CAS_AUTHORIZATION_ENDPOINT =
new UriGuacamoleProperty() {
public static final URIGuacamoleProperty CAS_AUTHORIZATION_ENDPOINT =
new URIGuacamoleProperty() {
@Override
public String getName() { return "cas-authorization-endpoint"; }
@@ -49,8 +49,8 @@ public class CASGuacamoleProperties {
* authentication process is complete. This must be the full URL that a
* user would enter into their browser to access Guacamole.
*/
public static final UriGuacamoleProperty CAS_REDIRECT_URI =
new UriGuacamoleProperty() {
public static final URIGuacamoleProperty CAS_REDIRECT_URI =
new URIGuacamoleProperty() {
@Override
public String getName() { return "cas-redirect-uri"; }