├── .github └── workflows │ └── maven.yml ├── .gitignore ├── LICENSE ├── README.md ├── consuming-soap-web-service ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ └── article │ │ │ ├── ConsumingSoapWebServiceApplication.java │ │ │ ├── client │ │ │ └── ArticleClient.java │ │ │ └── config │ │ │ └── SoapClientConfig.java │ └── resources │ │ ├── application.properties │ │ └── wsdl │ │ └── article.wsdl │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── article │ └── ConsumingSoapWebServiceApplicationTests.java ├── core-spring-modules └── spring-1 │ └── spring-rest-client │ ├── .gitattributes │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── musibs │ │ │ ├── SpringRestClientApplication.java │ │ │ ├── controller │ │ │ └── ProductController.java │ │ │ ├── entity │ │ │ └── Product.java │ │ │ ├── exception │ │ │ ├── AccessDeniedException.java │ │ │ ├── ProductNotFoundException.java │ │ │ └── ServiceException.java │ │ │ ├── interceptors │ │ │ └── LoggingInterceptor.java │ │ │ └── repository │ │ │ └── ProductRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── musibs │ └── SpringRestClientApplicationTests.java ├── keystores ├── client.cert ├── client.jks ├── server.cert └── server.jks ├── medium-articles.iml ├── pom.xml ├── produce-soap-web-service-exceptions ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ ├── ProduceSoapWebServiceExceptionsApplication.java │ │ │ ├── config │ │ │ └── SoapServerConfiguration.java │ │ │ ├── exception │ │ │ ├── ArticleNotFoundException.java │ │ │ ├── model │ │ │ │ └── ArticleFault.java │ │ │ └── resolver │ │ │ │ └── CustomSoapFaultDefinitionExceptionResolver.java │ │ │ └── server │ │ │ └── ArticleEndpoint.java │ └── resources │ │ ├── application.properties │ │ └── xsd │ │ └── article.xsd │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── ProduceSoapWebServiceExceptionsApplicationTests.java ├── produce-soap-web-service-interceptors ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbd │ │ │ └── spring │ │ │ └── ws │ │ │ ├── ProduceSoapWebServiceInterceptorsApplication.java │ │ │ ├── config │ │ │ └── SoapServerConfiguration.java │ │ │ ├── interceptors │ │ │ ├── GlobalEndpointInterceptor.java │ │ │ └── LocalEndpointInterceptor.java │ │ │ └── server │ │ │ └── ArticleEndpoint.java │ └── resources │ │ ├── application.properties │ │ └── xsd │ │ └── article.xsd │ └── test │ └── java │ └── io │ └── tbd │ └── spring │ └── ws │ └── ProduceSoapWebServiceInterceptorsApplicationTests.java ├── produce-soap-web-service ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ └── article │ │ │ ├── ProduceSoapWebServiceApplication.java │ │ │ ├── configuration │ │ │ └── SoapServerConfiguration.java │ │ │ ├── interceptors │ │ │ └── CustomPayloadValidatingInterceptor.java │ │ │ └── server │ │ │ └── ArticleEndpoint.java │ └── resources │ │ ├── application.properties │ │ └── xsd │ │ └── article.xsd │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── article │ └── ProduceSoapWebServiceApplicationTests.java ├── spring-boot-kafka-demo ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── boot │ │ │ └── SpringBootKafkaDemoApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── boot │ └── SpringBootKafkaDemoApplicationTests.java ├── spring-boot-pocket-api-actuator ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── springbytes │ │ │ ├── SpringBookPocketApplication.java │ │ │ ├── controller │ │ │ └── PocketController.java │ │ │ ├── exception │ │ │ └── InvalidPocketException.java │ │ │ ├── model │ │ │ └── Pocket.java │ │ │ └── repository │ │ │ └── PocketRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── springbytes │ └── SpringRestBasicAuthApplicationTests.java ├── spring-boot-pocket-api-querydsl ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── springbytes │ │ │ ├── SpringBookPocketApplication.java │ │ │ ├── controller │ │ │ └── PocketController.java │ │ │ ├── exception │ │ │ └── InvalidPocketException.java │ │ │ ├── model │ │ │ └── Pocket.java │ │ │ └── repository │ │ │ └── PocketRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── springbytes │ └── SpringRestBasicAuthApplicationTests.java ├── spring-boot-pocket-api ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── springbytes │ │ │ ├── SpringBookPocketApplication.java │ │ │ ├── controller │ │ │ └── PocketController.java │ │ │ ├── exception │ │ │ └── InvalidPocketException.java │ │ │ ├── model │ │ │ └── Pocket.java │ │ │ └── repository │ │ │ └── PocketRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── springbytes │ └── SpringRestBasicAuthApplicationTests.java ├── spring-boot-wildfly-demo ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── boot │ │ │ ├── ServletInitializer.java │ │ │ ├── SpringBootWildflyDemoApplication.java │ │ │ └── controller │ │ │ └── HomeController.java │ └── resources │ │ ├── application.properties │ │ └── templates │ │ └── index.html │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── boot │ └── SpringBootWildflyDemoApplicationTests.java ├── spring-boot-wildfly ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── boot │ │ │ └── wildfly │ │ │ └── SpringBootWildflyApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── boot │ └── wildfly │ └── SpringBootWildflyApplicationTests.java ├── spring-rest-basic-auth ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── springbytes │ │ │ ├── SpringRestBasicAuthApplication.java │ │ │ ├── controller │ │ │ └── PocketController.java │ │ │ ├── exception │ │ │ └── InvalidPocketException.java │ │ │ ├── model │ │ │ └── Pocket.java │ │ │ ├── repository │ │ │ └── PocketRepository.java │ │ │ └── security │ │ │ └── SecurityConfiguration.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── io │ └── springbytes │ └── SpringRestBasicAuthApplicationTests.java ├── spring-soap-digital-certificate-auth-client ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ ├── SpringSoapDigitalCertificateAuthClientApplication.java │ │ │ ├── client │ │ │ └── ArticleClient.java │ │ │ └── config │ │ │ └── SoapClientConfig.java │ └── resources │ │ ├── application.properties │ │ ├── client.cert │ │ ├── client.jks │ │ ├── logback.xml │ │ ├── server.cert │ │ ├── server.jks │ │ └── wsdl │ │ └── article.wsdl │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── SpringSoapDigitalCertificateAuthClientApplicationTests.java ├── spring-soap-digital-certificate-auth ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ ├── SpringSoapDigitalCertificateAuthApplication.java │ │ │ ├── configuration │ │ │ └── SoapServerConfiguration.java │ │ │ └── server │ │ │ └── ArticleEndpoint.java │ └── resources │ │ ├── application.properties │ │ ├── client.cert │ │ ├── client.jks │ │ ├── logback.xml │ │ ├── server.cert │ │ ├── server.jks │ │ └── xsd │ │ └── article.xsd │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── SpringSoapDigitalCertificateAuthApplicationTests.java ├── spring-soap-username-password-auth-client ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ ├── SpringSoapUsernamePasswordAuthClientApplication.java │ │ │ ├── client │ │ │ └── ArticleClient.java │ │ │ └── config │ │ │ └── SoapClientConfig.java │ └── resources │ │ ├── application.properties │ │ ├── logback.xml │ │ └── wsdl │ │ └── article.wsdl │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── SpringSoapUsernamePasswordAuthClientApplicationTests.java ├── spring-soap-username-password-auth ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ ├── SpringSoapUsernamePasswordAuthApplication.java │ │ │ ├── configuration │ │ │ └── SoapServerConfiguration.java │ │ │ └── server │ │ │ └── ArticleEndpoint.java │ └── resources │ │ ├── application.properties │ │ ├── logback.xml │ │ └── xsd │ │ └── article.xsd │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── SpringSoapUsernamePasswordAuthApplicationTests.java ├── spring-soap-webservice ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ ├── SpringSoapWebserviceApplication.java │ │ │ ├── configuration │ │ │ └── SoapWebServiceConfiguration.java │ │ │ └── endpoint │ │ │ └── Calculator.java │ └── resources │ │ ├── application.properties │ │ ├── request.xml │ │ ├── response.xml │ │ └── wsdl │ │ └── calculator.wsdl │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── SpringSoapWebserviceApplicationTests.java ├── spring-soap-ws-soapaction ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── tbc │ │ │ └── spring │ │ │ └── ws │ │ │ └── soapaction │ │ │ ├── SpringSoapWsSoapactionApplication.java │ │ │ └── components │ │ │ ├── TravelAgent.java │ │ │ └── TravelAgentEndpoint.java │ └── resources │ │ ├── application.properties │ │ ├── wsdl │ │ └── TravelAgent.wsdl │ │ └── xsd │ │ └── article.xsd │ └── test │ └── java │ └── io │ └── tbc │ └── spring │ └── ws │ └── soapaction │ └── SpringSoapWsSoapactionApplicationTests.java └── temporal-demo ├── .gitattributes ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── musibs │ │ ├── TemporalDemoApplication.java │ │ ├── domain │ │ ├── Order.java │ │ └── OrderStatus.java │ │ └── temporal │ │ └── activities │ │ ├── OrderActivities.java │ │ ├── OrderActivitiesImpl.java │ │ ├── OrderProcessingWorker.java │ │ ├── OrderWorkflow.java │ │ └── OrderWorkflowImpl.java └── resources │ └── application.properties └── test └── java └── com └── musibs └── TemporalDemoApplicationTests.java /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .iml 3 | .settings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/README.md -------------------------------------------------------------------------------- /consuming-soap-web-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/.gitignore -------------------------------------------------------------------------------- /consuming-soap-web-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /consuming-soap-web-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /consuming-soap-web-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /consuming-soap-web-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/mvnw -------------------------------------------------------------------------------- /consuming-soap-web-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/mvnw.cmd -------------------------------------------------------------------------------- /consuming-soap-web-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/pom.xml -------------------------------------------------------------------------------- /consuming-soap-web-service/src/main/java/io/tbc/spring/ws/article/ConsumingSoapWebServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/src/main/java/io/tbc/spring/ws/article/ConsumingSoapWebServiceApplication.java -------------------------------------------------------------------------------- /consuming-soap-web-service/src/main/java/io/tbc/spring/ws/article/client/ArticleClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/src/main/java/io/tbc/spring/ws/article/client/ArticleClient.java -------------------------------------------------------------------------------- /consuming-soap-web-service/src/main/java/io/tbc/spring/ws/article/config/SoapClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/src/main/java/io/tbc/spring/ws/article/config/SoapClientConfig.java -------------------------------------------------------------------------------- /consuming-soap-web-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 2 | -------------------------------------------------------------------------------- /consuming-soap-web-service/src/main/resources/wsdl/article.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/src/main/resources/wsdl/article.wsdl -------------------------------------------------------------------------------- /consuming-soap-web-service/src/test/java/io/tbc/spring/ws/article/ConsumingSoapWebServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/consuming-soap-web-service/src/test/java/io/tbc/spring/ws/article/ConsumingSoapWebServiceApplicationTests.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/.gitattributes -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/.gitignore -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/build.gradle -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/gradlew -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/gradlew.bat -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'spring-rest-client' 2 | -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/SpringRestClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/SpringRestClientApplication.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/controller/ProductController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/controller/ProductController.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/entity/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/entity/Product.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/exception/AccessDeniedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/exception/AccessDeniedException.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/exception/ProductNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/exception/ProductNotFoundException.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/exception/ServiceException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/exception/ServiceException.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/interceptors/LoggingInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/interceptors/LoggingInterceptor.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/repository/ProductRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/java/io/musibs/repository/ProductRepository.java -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/main/resources/application.properties -------------------------------------------------------------------------------- /core-spring-modules/spring-1/spring-rest-client/src/test/java/io/musibs/SpringRestClientApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/core-spring-modules/spring-1/spring-rest-client/src/test/java/io/musibs/SpringRestClientApplicationTests.java -------------------------------------------------------------------------------- /keystores/client.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/keystores/client.cert -------------------------------------------------------------------------------- /keystores/client.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/keystores/client.jks -------------------------------------------------------------------------------- /keystores/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/keystores/server.cert -------------------------------------------------------------------------------- /keystores/server.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/keystores/server.jks -------------------------------------------------------------------------------- /medium-articles.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/medium-articles.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/pom.xml -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/.gitignore -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/mvnw -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/mvnw.cmd -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/pom.xml -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/ProduceSoapWebServiceExceptionsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/ProduceSoapWebServiceExceptionsApplication.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/config/SoapServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/config/SoapServerConfiguration.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/exception/ArticleNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/exception/ArticleNotFoundException.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/exception/model/ArticleFault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/exception/model/ArticleFault.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/exception/resolver/CustomSoapFaultDefinitionExceptionResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/exception/resolver/CustomSoapFaultDefinitionExceptionResolver.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/server/ArticleEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/java/io/tbc/spring/ws/server/ArticleEndpoint.java -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8083 2 | -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/main/resources/xsd/article.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/main/resources/xsd/article.xsd -------------------------------------------------------------------------------- /produce-soap-web-service-exceptions/src/test/java/io/tbc/spring/ws/ProduceSoapWebServiceExceptionsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-exceptions/src/test/java/io/tbc/spring/ws/ProduceSoapWebServiceExceptionsApplicationTests.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/.gitignore -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/mvnw -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/mvnw.cmd -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/pom.xml -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/ProduceSoapWebServiceInterceptorsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/ProduceSoapWebServiceInterceptorsApplication.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/config/SoapServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/config/SoapServerConfiguration.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/interceptors/GlobalEndpointInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/interceptors/GlobalEndpointInterceptor.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/interceptors/LocalEndpointInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/interceptors/LocalEndpointInterceptor.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/server/ArticleEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/main/java/io/tbd/spring/ws/server/ArticleEndpoint.java -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8082 -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/main/resources/xsd/article.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/main/resources/xsd/article.xsd -------------------------------------------------------------------------------- /produce-soap-web-service-interceptors/src/test/java/io/tbd/spring/ws/ProduceSoapWebServiceInterceptorsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service-interceptors/src/test/java/io/tbd/spring/ws/ProduceSoapWebServiceInterceptorsApplicationTests.java -------------------------------------------------------------------------------- /produce-soap-web-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/.gitignore -------------------------------------------------------------------------------- /produce-soap-web-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /produce-soap-web-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /produce-soap-web-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /produce-soap-web-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/mvnw -------------------------------------------------------------------------------- /produce-soap-web-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/mvnw.cmd -------------------------------------------------------------------------------- /produce-soap-web-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/pom.xml -------------------------------------------------------------------------------- /produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/ProduceSoapWebServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/ProduceSoapWebServiceApplication.java -------------------------------------------------------------------------------- /produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/configuration/SoapServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/configuration/SoapServerConfiguration.java -------------------------------------------------------------------------------- /produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/interceptors/CustomPayloadValidatingInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/interceptors/CustomPayloadValidatingInterceptor.java -------------------------------------------------------------------------------- /produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/server/ArticleEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/src/main/java/io/tbc/spring/ws/article/server/ArticleEndpoint.java -------------------------------------------------------------------------------- /produce-soap-web-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /produce-soap-web-service/src/main/resources/xsd/article.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/src/main/resources/xsd/article.xsd -------------------------------------------------------------------------------- /produce-soap-web-service/src/test/java/io/tbc/spring/ws/article/ProduceSoapWebServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/produce-soap-web-service/src/test/java/io/tbc/spring/ws/article/ProduceSoapWebServiceApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-kafka-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/.gitignore -------------------------------------------------------------------------------- /spring-boot-kafka-demo/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-kafka-demo/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-kafka-demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-kafka-demo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/mvnw -------------------------------------------------------------------------------- /spring-boot-kafka-demo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-kafka-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/pom.xml -------------------------------------------------------------------------------- /spring-boot-kafka-demo/src/main/java/io/tbc/spring/boot/SpringBootKafkaDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/src/main/java/io/tbc/spring/boot/SpringBootKafkaDemoApplication.java -------------------------------------------------------------------------------- /spring-boot-kafka-demo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.kafka.bootstrap-servers=localhost:9092 2 | -------------------------------------------------------------------------------- /spring-boot-kafka-demo/src/test/java/io/tbc/spring/boot/SpringBootKafkaDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-kafka-demo/src/test/java/io/tbc/spring/boot/SpringBootKafkaDemoApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/.gitignore -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/mvnw -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/pom.xml -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/main/java/io/springbytes/SpringBookPocketApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/src/main/java/io/springbytes/SpringBookPocketApplication.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/main/java/io/springbytes/controller/PocketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/src/main/java/io/springbytes/controller/PocketController.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/main/java/io/springbytes/exception/InvalidPocketException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/src/main/java/io/springbytes/exception/InvalidPocketException.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/main/java/io/springbytes/model/Pocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/src/main/java/io/springbytes/model/Pocket.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/main/java/io/springbytes/repository/PocketRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/src/main/java/io/springbytes/repository/PocketRepository.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | management.endpoints.web.exposure.include=* 2 | -------------------------------------------------------------------------------- /spring-boot-pocket-api-actuator/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-actuator/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/.gitignore -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/mvnw -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/pom.xml -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/SpringBookPocketApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/SpringBookPocketApplication.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/controller/PocketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/controller/PocketController.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/exception/InvalidPocketException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/exception/InvalidPocketException.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/model/Pocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/model/Pocket.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/repository/PocketRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/src/main/java/io/springbytes/repository/PocketRepository.java -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-boot-pocket-api-querydsl/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api-querydsl/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/.gitignore -------------------------------------------------------------------------------- /spring-boot-pocket-api/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-pocket-api/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-pocket-api/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/mvnw -------------------------------------------------------------------------------- /spring-boot-pocket-api/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-pocket-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/pom.xml -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/main/java/io/springbytes/SpringBookPocketApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/src/main/java/io/springbytes/SpringBookPocketApplication.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/main/java/io/springbytes/controller/PocketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/src/main/java/io/springbytes/controller/PocketController.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/main/java/io/springbytes/exception/InvalidPocketException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/src/main/java/io/springbytes/exception/InvalidPocketException.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/main/java/io/springbytes/model/Pocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/src/main/java/io/springbytes/model/Pocket.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/main/java/io/springbytes/repository/PocketRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/src/main/java/io/springbytes/repository/PocketRepository.java -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-boot-pocket-api/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-pocket-api/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/.gitignore -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/README.md -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/mvnw -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/pom.xml -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/src/main/java/io/tbc/spring/boot/ServletInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/src/main/java/io/tbc/spring/boot/ServletInitializer.java -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/src/main/java/io/tbc/spring/boot/SpringBootWildflyDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/src/main/java/io/tbc/spring/boot/SpringBootWildflyDemoApplication.java -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/src/main/java/io/tbc/spring/boot/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/src/main/java/io/tbc/spring/boot/controller/HomeController.java -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /spring-boot-wildfly-demo/src/test/java/io/tbc/spring/boot/SpringBootWildflyDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly-demo/src/test/java/io/tbc/spring/boot/SpringBootWildflyDemoApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-wildfly/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/.gitignore -------------------------------------------------------------------------------- /spring-boot-wildfly/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-wildfly/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-wildfly/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-wildfly/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/mvnw -------------------------------------------------------------------------------- /spring-boot-wildfly/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-wildfly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/pom.xml -------------------------------------------------------------------------------- /spring-boot-wildfly/src/main/java/io/tbc/spring/boot/wildfly/SpringBootWildflyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/src/main/java/io/tbc/spring/boot/wildfly/SpringBootWildflyApplication.java -------------------------------------------------------------------------------- /spring-boot-wildfly/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-boot-wildfly/src/test/java/io/tbc/spring/boot/wildfly/SpringBootWildflyApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-boot-wildfly/src/test/java/io/tbc/spring/boot/wildfly/SpringBootWildflyApplicationTests.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/.gitignore -------------------------------------------------------------------------------- /spring-rest-basic-auth/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-rest-basic-auth/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-rest-basic-auth/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/mvnw -------------------------------------------------------------------------------- /spring-rest-basic-auth/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/mvnw.cmd -------------------------------------------------------------------------------- /spring-rest-basic-auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/pom.xml -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/java/io/springbytes/SpringRestBasicAuthApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/main/java/io/springbytes/SpringRestBasicAuthApplication.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/java/io/springbytes/controller/PocketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/main/java/io/springbytes/controller/PocketController.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/java/io/springbytes/exception/InvalidPocketException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/main/java/io/springbytes/exception/InvalidPocketException.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/java/io/springbytes/model/Pocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/main/java/io/springbytes/model/Pocket.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/java/io/springbytes/repository/PocketRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/main/java/io/springbytes/repository/PocketRepository.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/java/io/springbytes/security/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/main/java/io/springbytes/security/SecurityConfiguration.java -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-rest-basic-auth/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-rest-basic-auth/src/test/java/io/springbytes/SpringRestBasicAuthApplicationTests.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/.gitignore -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/mvnw -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/mvnw.cmd -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/pom.xml -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthClientApplication.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/java/io/tbc/spring/ws/client/ArticleClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/java/io/tbc/spring/ws/client/ArticleClient.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/java/io/tbc/spring/ws/config/SoapClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/java/io/tbc/spring/ws/config/SoapClientConfig.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9091 -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/client.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/resources/client.cert -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/client.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/resources/client.jks -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/resources/logback.xml -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/resources/server.cert -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/server.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/resources/server.jks -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/main/resources/wsdl/article.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/main/resources/wsdl/article.wsdl -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth-client/src/test/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthClientApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth-client/src/test/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthClientApplicationTests.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/.gitignore -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/mvnw -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/mvnw.cmd -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/pom.xml -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthApplication.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/java/io/tbc/spring/ws/configuration/SoapServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/java/io/tbc/spring/ws/configuration/SoapServerConfiguration.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/java/io/tbc/spring/ws/server/ArticleEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/java/io/tbc/spring/ws/server/ArticleEndpoint.java -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/client.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/resources/client.cert -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/client.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/resources/client.jks -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/resources/logback.xml -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/server.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/resources/server.cert -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/server.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/resources/server.jks -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/main/resources/xsd/article.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/main/resources/xsd/article.xsd -------------------------------------------------------------------------------- /spring-soap-digital-certificate-auth/src/test/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-digital-certificate-auth/src/test/java/io/tbc/spring/ws/SpringSoapDigitalCertificateAuthApplicationTests.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/.gitignore -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/mvnw -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/mvnw.cmd -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/pom.xml -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/main/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/src/main/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthClientApplication.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/main/java/io/tbc/spring/ws/client/ArticleClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/src/main/java/io/tbc/spring/ws/client/ArticleClient.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/main/java/io/tbc/spring/ws/config/SoapClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/src/main/java/io/tbc/spring/ws/config/SoapClientConfig.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8085 2 | -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/src/main/resources/logback.xml -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/main/resources/wsdl/article.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/src/main/resources/wsdl/article.wsdl -------------------------------------------------------------------------------- /spring-soap-username-password-auth-client/src/test/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthClientApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth-client/src/test/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthClientApplicationTests.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/.gitignore -------------------------------------------------------------------------------- /spring-soap-username-password-auth/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-soap-username-password-auth/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-soap-username-password-auth/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/mvnw -------------------------------------------------------------------------------- /spring-soap-username-password-auth/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/mvnw.cmd -------------------------------------------------------------------------------- /spring-soap-username-password-auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/pom.xml -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/main/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/src/main/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthApplication.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/main/java/io/tbc/spring/ws/configuration/SoapServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/src/main/java/io/tbc/spring/ws/configuration/SoapServerConfiguration.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/main/java/io/tbc/spring/ws/server/ArticleEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/src/main/java/io/tbc/spring/ws/server/ArticleEndpoint.java -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8084 2 | -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/src/main/resources/logback.xml -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/main/resources/xsd/article.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/src/main/resources/xsd/article.xsd -------------------------------------------------------------------------------- /spring-soap-username-password-auth/src/test/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-username-password-auth/src/test/java/io/tbc/spring/ws/SpringSoapUsernamePasswordAuthApplicationTests.java -------------------------------------------------------------------------------- /spring-soap-webservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/.gitignore -------------------------------------------------------------------------------- /spring-soap-webservice/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-soap-webservice/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-soap-webservice/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-soap-webservice/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/mvnw -------------------------------------------------------------------------------- /spring-soap-webservice/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/mvnw.cmd -------------------------------------------------------------------------------- /spring-soap-webservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/pom.xml -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/java/io/tbc/spring/ws/SpringSoapWebserviceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/main/java/io/tbc/spring/ws/SpringSoapWebserviceApplication.java -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/java/io/tbc/spring/ws/configuration/SoapWebServiceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/main/java/io/tbc/spring/ws/configuration/SoapWebServiceConfiguration.java -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/java/io/tbc/spring/ws/endpoint/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/main/java/io/tbc/spring/ws/endpoint/Calculator.java -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9091 2 | -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/resources/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/main/resources/request.xml -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/resources/response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/main/resources/response.xml -------------------------------------------------------------------------------- /spring-soap-webservice/src/main/resources/wsdl/calculator.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/main/resources/wsdl/calculator.wsdl -------------------------------------------------------------------------------- /spring-soap-webservice/src/test/java/io/tbc/spring/ws/SpringSoapWebserviceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-webservice/src/test/java/io/tbc/spring/ws/SpringSoapWebserviceApplicationTests.java -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/.gitignore -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/mvnw -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/mvnw.cmd -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/pom.xml -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/main/java/io/tbc/spring/ws/soapaction/SpringSoapWsSoapactionApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/src/main/java/io/tbc/spring/ws/soapaction/SpringSoapWsSoapactionApplication.java -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/main/java/io/tbc/spring/ws/soapaction/components/TravelAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/src/main/java/io/tbc/spring/ws/soapaction/components/TravelAgent.java -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/main/java/io/tbc/spring/ws/soapaction/components/TravelAgentEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/src/main/java/io/tbc/spring/ws/soapaction/components/TravelAgentEndpoint.java -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/main/resources/wsdl/TravelAgent.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/src/main/resources/wsdl/TravelAgent.wsdl -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/main/resources/xsd/article.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/src/main/resources/xsd/article.xsd -------------------------------------------------------------------------------- /spring-soap-ws-soapaction/src/test/java/io/tbc/spring/ws/soapaction/SpringSoapWsSoapactionApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/spring-soap-ws-soapaction/src/test/java/io/tbc/spring/ws/soapaction/SpringSoapWsSoapactionApplicationTests.java -------------------------------------------------------------------------------- /temporal-demo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/.gitattributes -------------------------------------------------------------------------------- /temporal-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/.gitignore -------------------------------------------------------------------------------- /temporal-demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /temporal-demo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/mvnw -------------------------------------------------------------------------------- /temporal-demo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/mvnw.cmd -------------------------------------------------------------------------------- /temporal-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/pom.xml -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/TemporalDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/TemporalDemoApplication.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/domain/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/domain/Order.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/domain/OrderStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/domain/OrderStatus.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/temporal/activities/OrderActivities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/temporal/activities/OrderActivities.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/temporal/activities/OrderActivitiesImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/temporal/activities/OrderActivitiesImpl.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/temporal/activities/OrderProcessingWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/temporal/activities/OrderProcessingWorker.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/temporal/activities/OrderWorkflow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/temporal/activities/OrderWorkflow.java -------------------------------------------------------------------------------- /temporal-demo/src/main/java/com/musibs/temporal/activities/OrderWorkflowImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/main/java/com/musibs/temporal/activities/OrderWorkflowImpl.java -------------------------------------------------------------------------------- /temporal-demo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=temporal-demo 2 | -------------------------------------------------------------------------------- /temporal-demo/src/test/java/com/musibs/TemporalDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musibs/medium-articles/HEAD/temporal-demo/src/test/java/com/musibs/TemporalDemoApplicationTests.java --------------------------------------------------------------------------------