Replace AuthorizationGrantType & ClientAuthenticationMethod
Closes gh-10506pull/10562/head
parent
e69a93bf47
commit
3ced8412b5
@ -1,45 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.autoconfigure.security.oauth2.client;
|
||||
|
||||
/**
|
||||
* OAuth 2.0 authorization grant types supported by Spring Boot.
|
||||
*
|
||||
* @author Madhura Bhave
|
||||
* @author Phillip Webb
|
||||
* @since 2.0.0
|
||||
*/
|
||||
public enum AuthorizationGrantType {
|
||||
|
||||
/**
|
||||
* An {@code "authorization_code"} grant type.
|
||||
*/
|
||||
AUTHORIZATION_CODE(
|
||||
org.springframework.security.oauth2.core.AuthorizationGrantType.AUTHORIZATION_CODE);
|
||||
|
||||
private final org.springframework.security.oauth2.core.AuthorizationGrantType type;
|
||||
|
||||
AuthorizationGrantType(
|
||||
org.springframework.security.oauth2.core.AuthorizationGrantType type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
org.springframework.security.oauth2.core.AuthorizationGrantType getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.autoconfigure.security.oauth2.client;
|
||||
|
||||
/**
|
||||
* OAuth 2.0 client authentication methods supported by Spring Boot.
|
||||
*
|
||||
* @author Madhura Bhave
|
||||
* @author Phillip Webb
|
||||
* @since 2.0.0
|
||||
* @see org.springframework.security.oauth2.core.ClientAuthenticationMethod
|
||||
*/
|
||||
public enum ClientAuthenticationMethod {
|
||||
|
||||
/**
|
||||
* HTTP BASIC client authentication.
|
||||
*/
|
||||
BASIC(org.springframework.security.oauth2.core.ClientAuthenticationMethod.BASIC),
|
||||
|
||||
/**
|
||||
* HTTP POST client authentication.
|
||||
*/
|
||||
POST(org.springframework.security.oauth2.core.ClientAuthenticationMethod.POST);
|
||||
|
||||
private final org.springframework.security.oauth2.core.ClientAuthenticationMethod method;
|
||||
|
||||
ClientAuthenticationMethod(
|
||||
org.springframework.security.oauth2.core.ClientAuthenticationMethod method) {
|
||||
this.method = method;
|
||||
}
|
||||
|
||||
org.springframework.security.oauth2.core.ClientAuthenticationMethod getMethod() {
|
||||
return this.method;
|
||||
}
|
||||
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.autoconfigure.security.oauth2.client;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link AuthorizationGrantType}.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
public class AuthorizationGrantTypeTests {
|
||||
|
||||
@Test
|
||||
public void getTypeShouldGetSpringSecurityVariant() throws Exception {
|
||||
assertThat(AuthorizationGrantType.AUTHORIZATION_CODE.getType()).isEqualTo(
|
||||
org.springframework.security.oauth2.core.AuthorizationGrantType.AUTHORIZATION_CODE);
|
||||
}
|
||||
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.autoconfigure.security.oauth2.client;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link ClientAuthenticationMethod}.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
public class ClientAuthenticationMethodTests {
|
||||
|
||||
@Test
|
||||
public void getMethodShouldGetSpringSecurityVariant() throws Exception {
|
||||
assertThat(ClientAuthenticationMethod.BASIC.getMethod()).isEqualTo(
|
||||
org.springframework.security.oauth2.core.ClientAuthenticationMethod.BASIC);
|
||||
assertThat(ClientAuthenticationMethod.POST.getMethod()).isEqualTo(
|
||||
org.springframework.security.oauth2.core.ClientAuthenticationMethod.POST);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue