Browse Source

sample->example

Rob Winch 5 years ago
parent
commit
0a0d033d07
18 changed files with 18 additions and 18 deletions
  1. 1 1
      reactive/webflux/java/oauth2/webclient/src/main/java/example/IndexController.java
  2. 1 1
      reactive/webflux/java/oauth2/webclient/src/main/java/example/OAuth2WebClientController.java
  3. 1 1
      reactive/webflux/java/oauth2/webclient/src/main/java/example/OAuth2WebClientWebFluxApplication.java
  4. 1 1
      reactive/webflux/java/oauth2/webclient/src/main/java/example/RegisteredOAuth2AuthorizedClientController.java
  5. 1 1
      reactive/webflux/java/oauth2/webclient/src/main/java/example/SecurityConfiguration.java
  6. 1 1
      reactive/webflux/java/oauth2/webclient/src/main/java/example/WebClientConfiguration.java
  7. 1 1
      reactive/webflux/java/oauth2/webclient/src/test/java/example/OAuth2WebClientControllerTests.java
  8. 1 1
      reactive/webflux/java/oauth2/webclient/src/test/java/example/OAuth2WebClientWebFluxApplicationTests.java
  9. 1 1
      reactive/webflux/java/oauth2/webclient/src/test/java/example/RegisteredOAuth2AuthorizedClientControllerTests.java
  10. 1 1
      servlet/spring-boot/java/oauth2/login/src/integTest/java/example/OAuth2LoginApplicationTests.java
  11. 1 1
      servlet/spring-boot/java/oauth2/login/src/main/java/example/OAuth2LoginApplication.java
  12. 1 1
      servlet/spring-boot/java/oauth2/login/src/main/java/example/web/OAuth2LoginController.java
  13. 1 1
      servlet/spring-boot/java/oauth2/login/src/test/java/example/web/OAuth2LoginControllerTests.java
  14. 1 1
      servlet/spring-boot/java/oauth2/resource-server/hello-security/src/integTest/java/example/OAuth2ResourceServerApplicationITests.java
  15. 1 1
      servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/example/OAuth2ResourceServerApplication.java
  16. 1 1
      servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/example/OAuth2ResourceServerController.java
  17. 1 1
      servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/example/OAuth2ResourceServerSecurityConfiguration.java
  18. 1 1
      servlet/spring-boot/java/oauth2/resource-server/hello-security/src/test/java/example/OAuth2ResourceServerControllerTests.java

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/main/java/sample/IndexController.java → reactive/webflux/java/oauth2/webclient/src/main/java/example/IndexController.java

@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sample;
+package example;
 
 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.GetMapping;

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/main/java/sample/OAuth2WebClientController.java → reactive/webflux/java/oauth2/webclient/src/main/java/example/OAuth2WebClientController.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import reactor.core.publisher.Mono;
 

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/main/java/sample/OAuth2WebClientWebFluxApplication.java → reactive/webflux/java/oauth2/webclient/src/main/java/example/OAuth2WebClientWebFluxApplication.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/main/java/sample/RegisteredOAuth2AuthorizedClientController.java → reactive/webflux/java/oauth2/webclient/src/main/java/example/RegisteredOAuth2AuthorizedClientController.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import reactor.core.publisher.Mono;
 

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/main/java/sample/SecurityConfiguration.java → reactive/webflux/java/oauth2/webclient/src/main/java/example/SecurityConfiguration.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.springframework.context.annotation.Bean;
 import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity;

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/main/java/sample/WebClientConfiguration.java → reactive/webflux/java/oauth2/webclient/src/main/java/example/WebClientConfiguration.java

@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sample;
+package example;
 
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.context.annotation.Bean;

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/test/java/sample/OAuth2WebClientControllerTests.java → reactive/webflux/java/oauth2/webclient/src/test/java/example/OAuth2WebClientControllerTests.java

@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sample;
+package example;
 
 import okhttp3.mockwebserver.MockResponse;
 import okhttp3.mockwebserver.MockWebServer;

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/test/java/sample/OAuth2WebClientWebFluxApplicationTests.java → reactive/webflux/java/oauth2/webclient/src/test/java/example/OAuth2WebClientWebFluxApplicationTests.java

@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sample;
+package example;
 
 import org.junit.jupiter.api.Test;
 

+ 1 - 1
reactive/webflux/java/oauth2/webclient/src/test/java/sample/RegisteredOAuth2AuthorizedClientControllerTests.java → reactive/webflux/java/oauth2/webclient/src/test/java/example/RegisteredOAuth2AuthorizedClientControllerTests.java

@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sample;
+package example;
 
 import okhttp3.mockwebserver.MockResponse;
 import okhttp3.mockwebserver.MockWebServer;

+ 1 - 1
servlet/spring-boot/java/oauth2/login/src/integTest/java/sample/OAuth2LoginApplicationTests.java → servlet/spring-boot/java/oauth2/login/src/integTest/java/example/OAuth2LoginApplicationTests.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import java.net.URI;
 import java.net.URL;

+ 1 - 1
servlet/spring-boot/java/oauth2/login/src/main/java/sample/OAuth2LoginApplication.java → servlet/spring-boot/java/oauth2/login/src/main/java/example/OAuth2LoginApplication.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;

+ 1 - 1
servlet/spring-boot/java/oauth2/login/src/main/java/sample/web/OAuth2LoginController.java → servlet/spring-boot/java/oauth2/login/src/main/java/example/web/OAuth2LoginController.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample.web;
+package example.web;
 
 import org.springframework.security.core.annotation.AuthenticationPrincipal;
 import org.springframework.security.oauth2.client.OAuth2AuthorizedClient;

+ 1 - 1
servlet/spring-boot/java/oauth2/login/src/test/java/sample/web/OAuth2LoginControllerTests.java → servlet/spring-boot/java/oauth2/login/src/test/java/example/web/OAuth2LoginControllerTests.java

@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sample.web;
+package example.web;
 
 import java.util.Collections;
 

+ 1 - 1
servlet/spring-boot/java/oauth2/resource-server/hello-security/src/integTest/java/sample/OAuth2ResourceServerApplicationITests.java → servlet/spring-boot/java/oauth2/resource-server/hello-security/src/integTest/java/example/OAuth2ResourceServerApplicationITests.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.junit.jupiter.api.Test;
 

+ 1 - 1
servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/sample/OAuth2ResourceServerApplication.java → servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/example/OAuth2ResourceServerApplication.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;

+ 1 - 1
servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/sample/OAuth2ResourceServerController.java → servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/example/OAuth2ResourceServerController.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.springframework.security.core.annotation.AuthenticationPrincipal;
 import org.springframework.security.oauth2.jwt.Jwt;

+ 1 - 1
servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/sample/OAuth2ResourceServerSecurityConfiguration.java → servlet/spring-boot/java/oauth2/resource-server/hello-security/src/main/java/example/OAuth2ResourceServerSecurityConfiguration.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.context.annotation.Bean;

+ 1 - 1
servlet/spring-boot/java/oauth2/resource-server/hello-security/src/test/java/sample/OAuth2ResourceServerControllerTests.java → servlet/spring-boot/java/oauth2/resource-server/hello-security/src/test/java/example/OAuth2ResourceServerControllerTests.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample;
+package example;
 
 import org.junit.jupiter.api.Test;