mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-678: Rename UriGuacamoleProperty to URIGuacamoleProperty.
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
package org.apache.guacamole.auth.cas.conf;
|
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.
|
* 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.
|
* The authorization endpoint (URI) of the CAS service.
|
||||||
*/
|
*/
|
||||||
public static final UriGuacamoleProperty CAS_AUTHORIZATION_ENDPOINT =
|
public static final URIGuacamoleProperty CAS_AUTHORIZATION_ENDPOINT =
|
||||||
new UriGuacamoleProperty() {
|
new URIGuacamoleProperty() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() { return "cas-authorization-endpoint"; }
|
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
|
* authentication process is complete. This must be the full URL that a
|
||||||
* user would enter into their browser to access Guacamole.
|
* user would enter into their browser to access Guacamole.
|
||||||
*/
|
*/
|
||||||
public static final UriGuacamoleProperty CAS_REDIRECT_URI =
|
public static final URIGuacamoleProperty CAS_REDIRECT_URI =
|
||||||
new UriGuacamoleProperty() {
|
new URIGuacamoleProperty() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() { return "cas-redirect-uri"; }
|
public String getName() { return "cas-redirect-uri"; }
|
||||||
|
@@ -25,7 +25,7 @@ import org.apache.guacamole.GuacamoleException;
|
|||||||
import org.apache.guacamole.environment.Environment;
|
import org.apache.guacamole.environment.Environment;
|
||||||
import org.apache.guacamole.properties.IntegerGuacamoleProperty;
|
import org.apache.guacamole.properties.IntegerGuacamoleProperty;
|
||||||
import org.apache.guacamole.properties.StringGuacamoleProperty;
|
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
|
* Service for retrieving configuration information regarding the OpenID
|
||||||
@@ -65,8 +65,8 @@ public class ConfigurationService {
|
|||||||
/**
|
/**
|
||||||
* The authorization endpoint (URI) of the OpenID service.
|
* The authorization endpoint (URI) of the OpenID service.
|
||||||
*/
|
*/
|
||||||
private static final UriGuacamoleProperty OPENID_AUTHORIZATION_ENDPOINT =
|
private static final URIGuacamoleProperty OPENID_AUTHORIZATION_ENDPOINT =
|
||||||
new UriGuacamoleProperty() {
|
new URIGuacamoleProperty() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() { return "openid-authorization-endpoint"; }
|
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
|
* The endpoint (URI) of the JWKS service which defines how received ID
|
||||||
* tokens (JWTs) shall be validated.
|
* tokens (JWTs) shall be validated.
|
||||||
*/
|
*/
|
||||||
private static final UriGuacamoleProperty OPENID_JWKS_ENDPOINT =
|
private static final URIGuacamoleProperty OPENID_JWKS_ENDPOINT =
|
||||||
new UriGuacamoleProperty() {
|
new URIGuacamoleProperty() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() { return "openid-jwks-endpoint"; }
|
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
|
* authentication process is complete. This must be the full URL that a
|
||||||
* user would enter into their browser to access Guacamole.
|
* user would enter into their browser to access Guacamole.
|
||||||
*/
|
*/
|
||||||
private static final UriGuacamoleProperty OPENID_REDIRECT_URI =
|
private static final URIGuacamoleProperty OPENID_REDIRECT_URI =
|
||||||
new UriGuacamoleProperty() {
|
new URIGuacamoleProperty() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() { return "openid-redirect-uri"; }
|
public String getName() { return "openid-redirect-uri"; }
|
||||||
|
@@ -27,7 +27,7 @@ import org.apache.guacamole.GuacamoleServerException;
|
|||||||
/**
|
/**
|
||||||
* A GuacamoleProperty whose value is a URI.
|
* A GuacamoleProperty whose value is a URI.
|
||||||
*/
|
*/
|
||||||
public abstract class UriGuacamoleProperty implements GuacamoleProperty<URI> {
|
public abstract class URIGuacamoleProperty implements GuacamoleProperty<URI> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public URI parseValue(String value) throws GuacamoleException {
|
public URI parseValue(String value) throws GuacamoleException {
|
Reference in New Issue
Block a user