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"; }

View File

@@ -25,7 +25,7 @@ import org.apache.guacamole.GuacamoleException;
import org.apache.guacamole.environment.Environment;
import org.apache.guacamole.properties.IntegerGuacamoleProperty;
import org.apache.guacamole.properties.StringGuacamoleProperty;
import org.apache.guacamole.properties.UriGuacamoleProperty;
import org.apache.guacamole.properties.URIGuacamoleProperty;
/**
* Service for retrieving configuration information regarding the OpenID
@@ -65,8 +65,8 @@ public class ConfigurationService {
/**
* The authorization endpoint (URI) of the OpenID service.
*/
private static final UriGuacamoleProperty OPENID_AUTHORIZATION_ENDPOINT =
new UriGuacamoleProperty() {
private static final URIGuacamoleProperty OPENID_AUTHORIZATION_ENDPOINT =
new URIGuacamoleProperty() {
@Override
public String getName() { return "openid-authorization-endpoint"; }
@@ -77,8 +77,8 @@ public class ConfigurationService {
* The endpoint (URI) of the JWKS service which defines how received ID
* tokens (JWTs) shall be validated.
*/
private static final UriGuacamoleProperty OPENID_JWKS_ENDPOINT =
new UriGuacamoleProperty() {
private static final URIGuacamoleProperty OPENID_JWKS_ENDPOINT =
new URIGuacamoleProperty() {
@Override
public String getName() { return "openid-jwks-endpoint"; }
@@ -176,8 +176,8 @@ public class ConfigurationService {
* authentication process is complete. This must be the full URL that a
* user would enter into their browser to access Guacamole.
*/
private static final UriGuacamoleProperty OPENID_REDIRECT_URI =
new UriGuacamoleProperty() {
private static final URIGuacamoleProperty OPENID_REDIRECT_URI =
new URIGuacamoleProperty() {
@Override
public String getName() { return "openid-redirect-uri"; }