repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jooby/src/test/java/com/baeldung/jooby/AppUnitTest.java
web-modules/jooby/src/test/java/com/baeldung/jooby/AppUnitTest.java
package com.baeldung.jooby; import static org.junit.Assert.assertEquals; import org.junit.Test; import io.jooby.MockRouter; public class AppUnitTest { @Test public void given_defaultUrl_with_mockrouter_expect_fixedString() { MockRouter router = new MockRouter(new App()); assertEquals("Hello...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jooby/src/test/java/com/baeldung/jooby/AppLiveTest.java
web-modules/jooby/src/test/java/com/baeldung/jooby/AppLiveTest.java
package com.baeldung.jooby; import static org.junit.jupiter.api.Assertions.assertEquals; import java.io.IOException; import org.junit.jupiter.api.Test; import io.jooby.JoobyTest; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; @JoobyTest(value = App.class, port = 8080) class AppLiveTe...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jooby/src/main/java/com/baeldung/jooby/App.java
web-modules/jooby/src/main/java/com/baeldung/jooby/App.java
package com.baeldung.jooby; import com.baeldung.jooby.bean.Employee; import io.jooby.Jooby; import io.jooby.ServerOptions; import io.jooby.Session; import io.jooby.SessionStore; public class App extends Jooby { { setServerOptions(new ServerOptions().setPort(8080) .setSecurePort(8433)); } ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jooby/src/main/java/com/baeldung/jooby/mvc/GetController.java
web-modules/jooby/src/main/java/com/baeldung/jooby/mvc/GetController.java
package com.baeldung.jooby.mvc; import java.util.HashMap; import io.jooby.ModelAndView; import io.jooby.annotations.GET; import io.jooby.annotations.Path; @Path("/hello") public class GetController { @GET public String hello() { return "Hello Baeldung"; } @GET @Path("/home") public ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jooby/src/main/java/com/baeldung/jooby/mvc/PostController.java
web-modules/jooby/src/main/java/com/baeldung/jooby/mvc/PostController.java
package com.baeldung.jooby.mvc; import io.jooby.annotations.POST; import io.jooby.annotations.Path; @Path("/submit") public class PostController { @POST public String hello() { return "Submit Baeldung"; } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jooby/src/main/java/com/baeldung/jooby/bean/Employee.java
web-modules/jooby/src/main/java/com/baeldung/jooby/bean/Employee.java
package com.baeldung.jooby.bean; public class Employee { String id; String name; String email; public Employee(String id, String name, String email) { super(); this.id = id; this.name = name; this.email = email; } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/dao/UserManagementDAOImpl.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/dao/UserManagementDAOImpl.java
package com.baeldung.springintegration.dao; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; import java.util.ArrayList; import java.util.List; import jakarta.annotation.PostConstruct; @Repository public class UserManagementDAOImpl implements UserManagementDA...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/dao/UserManagementDAO.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/dao/UserManagementDAO.java
package com.baeldung.springintegration.dao; public interface UserManagementDAO { boolean createUser(String newUserData); }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/RegistrationBean.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/RegistrationBean.java
package com.baeldung.springintegration.controllers; import com.baeldung.springintegration.dao.UserManagementDAO; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jakarta.faces.annotation.ManagedProperty; import jakarta.faces.context.FacesContext; import jakarta.faces.view.ViewScoped; import jakarta.inj...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/HelloPFBean.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/HelloPFBean.java
package com.baeldung.springintegration.controllers; import java.util.ArrayList; import java.util.List; import jakarta.annotation.PostConstruct; import jakarta.faces.view.ViewScoped; import jakarta.inject.Named; @Named("helloPFBean") @ViewScoped public class HelloPFBean { private String firstName; private St...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/ELSampleBean.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/ELSampleBean.java
package com.baeldung.springintegration.controllers; import jakarta.annotation.PostConstruct; import jakarta.el.ELContextEvent; import jakarta.el.ELContextListener; import jakarta.el.LambdaExpression; import jakarta.faces.application.Application; import jakarta.faces.application.FacesMessage; import jakarta.faces.cont...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/HelloPFMBean.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/controllers/HelloPFMBean.java
package com.baeldung.springintegration.controllers; import jakarta.inject.Named; import jakarta.enterprise.context.SessionScoped; @Named("helloPFMBean") @SessionScoped public class HelloPFMBean { private String magicWord; public String getMagicWord() { return magicWord; } public void setMag...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/config/SpringCoreConfig.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/config/SpringCoreConfig.java
package com.baeldung.springintegration.config; import com.baeldung.springintegration.dao.UserManagementDAO; import com.baeldung.springintegration.dao.UserManagementDAOImpl; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class Spri...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jsf/src/main/java/com/baeldung/springintegration/config/MainWebAppInitializer.java
web-modules/jsf/src/main/java/com/baeldung/springintegration/config/MainWebAppInitializer.java
package com.baeldung.springintegration.config; import com.sun.faces.config.FacesInitializer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.WebApplicationInitializer; import org.springframework.web.context.ContextLoaderListener; import org.springframework.web.context.support.An...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/test/java/com/baeldung/dropwizard/introduction/repository/BrandRepositoryUnitTest.java
web-modules/dropwizard/src/test/java/com/baeldung/dropwizard/introduction/repository/BrandRepositoryUnitTest.java
package com.baeldung.dropwizard.introduction.repository; import com.baeldung.dropwizard.introduction.domain.Brand; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import java.util.ArrayList; import java.util.List; import java.util.Optional; import static org.junit.jupiter.api.Assertions.a...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/IntroductionApplication.java
web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/IntroductionApplication.java
package com.baeldung.dropwizard.introduction; import com.baeldung.dropwizard.introduction.configuration.ApplicationHealthCheck; import com.baeldung.dropwizard.introduction.configuration.BasicConfiguration; import com.baeldung.dropwizard.introduction.domain.Brand; import com.baeldung.dropwizard.introduction.repository....
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/resource/BrandResource.java
web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/resource/BrandResource.java
package com.baeldung.dropwizard.introduction.resource; import com.baeldung.dropwizard.introduction.domain.Brand; import com.baeldung.dropwizard.introduction.repository.BrandRepository; import javax.ws.rs.*; import javax.ws.rs.core.MediaType; import java.util.List; import java.util.Optional; @Path("/brands") @Produce...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/configuration/BasicConfiguration.java
web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/configuration/BasicConfiguration.java
package com.baeldung.dropwizard.introduction.configuration; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import io.dropwizard.Configuration; import javax.validation.constraints.NotNull; public class BasicConfiguration extends Configuration { @NotNull ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/configuration/ApplicationHealthCheck.java
web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/configuration/ApplicationHealthCheck.java
package com.baeldung.dropwizard.introduction.configuration; import com.codahale.metrics.health.HealthCheck; public class ApplicationHealthCheck extends HealthCheck { @Override protected Result check() throws Exception { return Result.healthy(); } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/domain/Brand.java
web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/domain/Brand.java
package com.baeldung.dropwizard.introduction.domain; public class Brand { private final Long id; private final String name; public Brand(final Long id, final String name) { this.id = id; this.name = name; } public Long getId() { return id; } public String getName(...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/repository/BrandRepository.java
web-modules/dropwizard/src/main/java/com/baeldung/dropwizard/introduction/repository/BrandRepository.java
package com.baeldung.dropwizard.introduction.repository; import com.baeldung.dropwizard.introduction.domain.Brand; import com.google.common.collect.ImmutableList; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; public class BrandRepository { private final List<Brand> brands;...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/CustomCheckPointIntegrationTest.java
web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/CustomCheckPointIntegrationTest.java
package com.baeldung.batch.understanding; import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.Properties; import javax.batch.operations.JobOperator; import javax.batch.runtime.BatchRuntime; import javax.batch.runtime.BatchStatus; import javax.batch.runtime.JobExecution; import javax.batch.r...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/SimpleChunkIntegrationTest.java
web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/SimpleChunkIntegrationTest.java
package com.baeldung.batch.understanding; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.List; import java.util.Map; import java.util.Properties; import javax.batch.operations.JobOperator; import javax.batch.runtime.BatchRuntim...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/SimpleErrorChunkIntegrationTest.java
web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/SimpleErrorChunkIntegrationTest.java
package com.baeldung.batch.understanding; import static org.junit.Assert.assertEquals; import java.util.List; import java.util.Properties; import javax.batch.operations.JobOperator; import javax.batch.runtime.BatchRuntime; import javax.batch.runtime.BatchStatus; import javax.batch.runtime.JobExecution; import javax....
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/SimpleBatchLetIntegrationTest.java
web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/SimpleBatchLetIntegrationTest.java
package com.baeldung.batch.understanding; import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.Properties; import javax.batch.operations.JobOperator; import javax.batch.runtime.BatchRuntime; import javax.batch.runtime.BatchStatus; import javax.batch.runtime.JobExecution; import org.junit.ju...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/JobSequenceIntegrationTest.java
web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/JobSequenceIntegrationTest.java
package com.baeldung.batch.understanding; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.ArrayList; import java.util.List; import java.util.Properties; import ja...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/BatchTestHelper.java
web-modules/jee-7/src/test/java/com/baeldung/batch/understanding/BatchTestHelper.java
package com.baeldung.batch.understanding; import java.util.HashMap; import java.util.Map; import javax.batch.runtime.BatchRuntime; import javax.batch.runtime.BatchStatus; import javax.batch.runtime.JobExecution; import javax.batch.runtime.Metric; import javax.batch.runtime.StepExecution; public class BatchTestHelper...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/convListVal/ConvListValLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/convListVal/ConvListValLiveTest.java
package com.baeldung.convListVal; import static org.jboss.arquillian.graphene.Graphene.guardHttp; import java.io.File; import java.net.URL; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.drone.api.annotation.Drone; im...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/singleton/CarServiceLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/singleton/CarServiceLiveTest.java
package com.baeldung.singleton; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import java.util.HashMap; import java.util.Map; import java.util.UUID; import javax.ejb.EJB; import jav...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/soap/ws/client/CountryClientLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/soap/ws/client/CountryClientLiveTest.java
package com.baeldung.soap.ws.client; import static org.junit.Assert.assertEquals; import org.junit.BeforeClass; import org.junit.Test; import com.baeldung.soap.ws.client.generated.CountryService; import com.baeldung.soap.ws.client.generated.CountryServiceImplService; import com.baeldung.soap.ws.client.generated.Curr...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/timer/ProgrammaticAtFixedRateTimerBeanLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/timer/ProgrammaticAtFixedRateTimerBeanLiveTest.java
package com.baeldung.timer; import com.jayway.awaitility.Awaitility; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrinkwrap.resolver.api.maven.Maven...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/timer/ProgrammaticTimerBeanLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/timer/ProgrammaticTimerBeanLiveTest.java
package com.baeldung.timer; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrinkwrap.resolver.api.maven.Maven; import org.junit.Test; import org.junit...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/timer/WithinWindowMatcher.java
web-modules/jee-7/src/test/java/com/baeldung/timer/WithinWindowMatcher.java
package com.baeldung.timer; import org.hamcrest.BaseMatcher; import org.hamcrest.Description; import org.hamcrest.Matcher; class WithinWindowMatcher extends BaseMatcher<Long> { private final long timeout; private final long tolerance; public WithinWindowMatcher(long timeout, long tolerance) { thi...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/timer/AutomaticTimerBeanLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/timer/AutomaticTimerBeanLiveTest.java
package com.baeldung.timer; import com.jayway.awaitility.Awaitility; import org.hamcrest.Matchers; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrin...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/timer/ProgrammaticWithFixedDelayTimerBeanLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/timer/ProgrammaticWithFixedDelayTimerBeanLiveTest.java
package com.baeldung.timer; import com.jayway.awaitility.Awaitility; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrinkwrap.resolver.api.maven.Maven...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/timer/ScheduleTimerBeanLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/timer/ScheduleTimerBeanLiveTest.java
package com.baeldung.timer; import com.jayway.awaitility.Awaitility; import org.hamcrest.Matchers; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrin...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/arquillan/ArquillianLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/arquillan/ArquillianLiveTest.java
package com.baeldung.arquillan; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import javax.inject.Inject; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shr...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldung/jaxws/EmployeeServiceLiveTest.java
web-modules/jee-7/src/test/java/com/baeldung/jaxws/EmployeeServiceLiveTest.java
package com.baeldung.jaxws; import static org.junit.Assert.assertEquals; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.util.List; import javax.xml.namespace.QName; import org.jboss.arquillian.container.test.api.Deployment; import org...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/test/java/com/baeldug/json/JsonUnitTest.java
web-modules/jee-7/src/test/java/com/baeldug/json/JsonUnitTest.java
package com.baeldug.json; import static org.hamcrest.CoreMatchers.hasItems; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import java.io.IOException; import java.io.StringReader; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Arrays; imp...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleBatchLet.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleBatchLet.java
package com.baeldung.batch.understanding; import javax.batch.api.AbstractBatchlet; import javax.batch.runtime.BatchStatus; import javax.inject.Named; @Named public class SimpleBatchLet extends AbstractBatchlet { @Override public String process() throws Exception { return BatchStatus.FAILED.toString();...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/InjectSimpleBatchLet.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/InjectSimpleBatchLet.java
package com.baeldung.batch.understanding; import java.util.Properties; import java.util.logging.Logger; import javax.batch.api.AbstractBatchlet; import javax.batch.api.BatchProperty; import javax.batch.runtime.BatchStatus; import javax.batch.runtime.context.JobContext; import javax.batch.runtime.context.StepContext; ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkItemReader.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkItemReader.java
package com.baeldung.batch.understanding; import java.io.Serializable; import java.util.Properties; import java.util.StringTokenizer; import javax.batch.api.chunk.AbstractItemReader; import javax.batch.runtime.BatchStatus; import javax.batch.runtime.context.JobContext; import javax.inject.Inject; import javax.inject.N...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/DeciderJobSequence.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/DeciderJobSequence.java
package com.baeldung.batch.understanding; import javax.batch.api.Decider; import javax.batch.runtime.StepExecution; import javax.inject.Named; @Named public class DeciderJobSequence implements Decider { @Override public String decide(StepExecution[] ses) throws Exception { return "nothing"; } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/ChunkExceptionSkipReadListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/ChunkExceptionSkipReadListener.java
package com.baeldung.batch.understanding; import javax.batch.api.chunk.listener.SkipReadListener; import javax.inject.Named; @Named public class ChunkExceptionSkipReadListener implements SkipReadListener { @Override public void onSkipReadItem(Exception e) throws Exception { } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkItemProcessor.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkItemProcessor.java
package com.baeldung.batch.understanding; import javax.batch.api.chunk.ItemProcessor; import javax.inject.Named; @Named public class SimpleChunkItemProcessor implements ItemProcessor { @Override public Integer processItem(Object t) { return ((Integer) t).intValue() % 2 == 0 ? null : ((Integer) t).intV...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkWriter.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkWriter.java
package com.baeldung.batch.understanding; import java.util.ArrayList; import java.util.List; import javax.batch.api.chunk.AbstractItemWriter; import javax.inject.Named; @Named public class SimpleChunkWriter extends AbstractItemWriter { List<Integer> processed = new ArrayList<>(); @Override public void wr...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/CustomCheckPoint.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/CustomCheckPoint.java
package com.baeldung.batch.understanding; import javax.batch.api.chunk.AbstractCheckpointAlgorithm; import javax.batch.runtime.context.JobContext; import javax.inject.Inject; import javax.inject.Named; @Named public class CustomCheckPoint extends AbstractCheckpointAlgorithm { @Inject JobContext jobContex...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkItemReaderError.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/SimpleChunkItemReaderError.java
package com.baeldung.batch.understanding; import java.io.Serializable; import java.util.StringTokenizer; import javax.batch.api.chunk.AbstractItemReader; import javax.batch.runtime.context.JobContext; import javax.inject.Inject; import javax.inject.Named; @Named public class SimpleChunkItemReaderError extends Abstra...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyItemWriter.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyItemWriter.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.AbstractItemWriter; import javax.inject.Named; import java.util.List; @Named public class MyItemWriter extends AbstractItemWriter { private static int retries = 0; @Override public void writeItems(List list) { if (r...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyInputRecord.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyInputRecord.java
package com.baeldung.batch.understanding.exception; import java.io.Serializable; public class MyInputRecord implements Serializable { private int id; public MyInputRecord(int id) { this.id = id; } public int getId() { return id; } public void setId(int id) { this.id ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MySkipWriteListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MySkipWriteListener.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.listener.SkipWriteListener; import javax.inject.Named; import java.util.List; @Named public class MySkipWriteListener implements SkipWriteListener { @Override public void onSkipWriteItem(List list, Exception e) throws Exception {...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyItemReader.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyItemReader.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.AbstractItemReader; import javax.inject.Named; import java.io.Serializable; import java.util.StringTokenizer; @Named public class MyItemReader extends AbstractItemReader { private StringTokenizer tokens; private MyInputRecord las...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyRetryReadListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyRetryReadListener.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.listener.RetryReadListener; import javax.inject.Named; @Named public class MyRetryReadListener implements RetryReadListener { @Override public void onRetryReadException(Exception ex) throws Exception { } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MySkipReadListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MySkipReadListener.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.listener.SkipReadListener; import javax.inject.Named; @Named public class MySkipReadListener implements SkipReadListener { @Override public void onSkipReadItem(Exception e) throws Exception { } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyRetryProcessorListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyRetryProcessorListener.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.listener.RetryProcessListener; import javax.inject.Named; @Named public class MyRetryProcessorListener implements RetryProcessListener { @Override public void onRetryProcessException(Object item, Exception ex) throws Exception { ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyOutputRecord.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyOutputRecord.java
package com.baeldung.batch.understanding.exception; import java.io.Serializable; public class MyOutputRecord implements Serializable { private int id; public MyOutputRecord(int id) { this.id = id; } public int getId() { return id; } public void setId(int id) { this.i...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MySkipProcessorListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MySkipProcessorListener.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.listener.SkipProcessListener; import javax.inject.Named; @Named public class MySkipProcessorListener implements SkipProcessListener { @Override public void onSkipProcessItem(Object t, Exception e) throws Exception { } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyItemProcessor.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyItemProcessor.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.ItemProcessor; import javax.inject.Named; @Named public class MyItemProcessor implements ItemProcessor { @Override public Object processItem(Object t) { if (((MyInputRecord) t).getId() == 6) { throw new NullPo...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyRetryWriteListener.java
web-modules/jee-7/src/main/java/com/baeldung/batch/understanding/exception/MyRetryWriteListener.java
package com.baeldung.batch.understanding.exception; import javax.batch.api.chunk.listener.RetryWriteListener; import javax.inject.Named; import java.util.List; @Named public class MyRetryWriteListener implements RetryWriteListener { @Override public void onRetryWriteException(List<Object> items, Exception ex)...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/convListVal/MyListener.java
web-modules/jee-7/src/main/java/com/baeldung/convListVal/MyListener.java
package com.baeldung.convListVal; import java.util.logging.Level; import java.util.logging.Logger; import javax.faces.event.AbortProcessingException; import javax.faces.event.ValueChangeEvent; import javax.faces.event.ValueChangeListener; public class MyListener implements ValueChangeListener { private static f...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/convListVal/ConvListVal.java
web-modules/jee-7/src/main/java/com/baeldung/convListVal/ConvListVal.java
package com.baeldung.convListVal; import java.util.Date; import javax.faces.bean.ManagedBean; @ManagedBean public class ConvListVal { private Integer age; private Double average; private Date myDate; private String name; private String surname; public Integer getAge() { return age; } p...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/singleton/CarServiceEjbSingleton.java
web-modules/jee-7/src/main/java/com/baeldung/singleton/CarServiceEjbSingleton.java
package com.baeldung.singleton; import java.util.UUID; import javax.ejb.Singleton; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @Singleton public class CarServiceEjbSingleton { private static Logger LOG = LoggerFactory.getLogger(CarServiceEjbSingleton.class); private UUID id = UUID.randomUUID(...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/singleton/CarServiceSingleton.java
web-modules/jee-7/src/main/java/com/baeldung/singleton/CarServiceSingleton.java
package com.baeldung.singleton; import java.util.UUID; import javax.inject.Singleton; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @Singleton public class CarServiceSingleton { private static Logger LOG = LoggerFactory.getLogger(CarServiceSingleton.class); private UUID id = UUID.randomUUID(); ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/singleton/Car.java
web-modules/jee-7/src/main/java/com/baeldung/singleton/Car.java
package com.baeldung.singleton; public class Car { private String type; private String model; private boolean serviced = false; public Car(String type, String model) { super(); this.type = type; this.model = model; } public boolean isServiced () { retu...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/singleton/CarServiceBean.java
web-modules/jee-7/src/main/java/com/baeldung/singleton/CarServiceBean.java
package com.baeldung.singleton; import java.util.UUID; import javax.enterprise.context.Dependent; import org.springframework.web.context.annotation.RequestScope; @RequestScope public class CarServiceBean { private UUID id = UUID.randomUUID(); public UUID getId() { return this.id; } @Overr...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/Country.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/Country.java
package com.baeldung.soap.ws.server; public class Country { protected String name; protected int population; protected String capital; protected Currency currency; public String getName() { return name; } public void setName(String name) { this.name = name; } publ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryServiceImpl.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryServiceImpl.java
package com.baeldung.soap.ws.server; import javax.jws.WebService; @WebService(endpointInterface = "com.baeldung.soap.ws.server.CountryService") public class CountryServiceImpl implements CountryService { private CountryRepository countryRepository = new CountryRepository(); @Override public Country find...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryService.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryService.java
package com.baeldung.soap.ws.server; import javax.jws.WebMethod; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding.Style; @WebService @SOAPBinding(style=Style.RPC) public interface CountryService { @WebMethod Country findByName(String name); }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryServicePublisher.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryServicePublisher.java
package com.baeldung.soap.ws.server; import javax.xml.ws.Endpoint; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class CountryServicePublisher { private static final Logger logger = LoggerFactory.getLogger(CountryServicePublisher.class); public static void main(String[] args) { ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryRepository.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/CountryRepository.java
package com.baeldung.soap.ws.server; import java.util.HashMap; import java.util.Map; public class CountryRepository { private static final Map<String, Country> countries = new HashMap<>(); { initData(); } private final static void initData() { Country usa = new Country(); us...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/Currency.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/server/Currency.java
package com.baeldung.soap.ws.server; public enum Currency { EUR, INR, USD; public String value() { return name(); } public static Currency fromValue(String v) { return valueOf(v); } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/Country.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/Country.java
package com.baeldung.soap.ws.client.generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for country complex type. * * <p>The following schema frag...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/package-info.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/package-info.java
@javax.xml.bind.annotation.XmlSchema(namespace = "http://server.ws.soap.baeldung.com/", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) package com.baeldung.soap.ws.client.generated;
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/CountryService.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/CountryService.java
package com.baeldung.soap.ws.client.generated; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.ws.Action; /** * This class was generated by the JAX-WS RI. ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/CountryServiceImplService.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/CountryServiceImplService.java
package com.baeldung.soap.ws.client.generated; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws....
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/ObjectFactory.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/ObjectFactory.java
package com.baeldung.soap.ws.client.generated; import javax.xml.bind.annotation.XmlRegistry; /** * This object contains factory methods for each * Java content interface and Java element interface * generated in the com.baeldung.soap.ws.client.generated package. * <p>An ObjectFactory allows you to programatic...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/Currency.java
web-modules/jee-7/src/main/java/com/baeldung/soap/ws/client/generated/Currency.java
package com.baeldung.soap.ws.client.generated; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for currency. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="currency"&g...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/json/PersonWriter.java
web-modules/jee-7/src/main/java/com/baeldung/json/PersonWriter.java
package com.baeldung.json; import javax.json.*; import javax.json.stream.JsonGenerator; import java.io.IOException; import java.io.StringWriter; import java.io.Writer; import java.text.SimpleDateFormat; import java.util.HashMap; import java.util.Map; public class PersonWriter { private Person person; private...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/json/Person.java
web-modules/jee-7/src/main/java/com/baeldung/json/Person.java
package com.baeldung.json; import java.util.Date; import java.util.List; public class Person { private String firstName; private String lastName; private Date birthdate; private List<String> emails; public String getFirstName() { return firstName; } public void setFirstName(Strin...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/json/PersonBuilder.java
web-modules/jee-7/src/main/java/com/baeldung/json/PersonBuilder.java
package com.baeldung.json; import javax.json.*; import java.io.IOException; import java.io.StringReader; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.List; import java.util.stream.Collectors; public class PersonBuilder { private String jsonString; private SimpleDateFor...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/TimerEventListener.java
web-modules/jee-7/src/main/java/com/baeldung/timer/TimerEventListener.java
package com.baeldung.timer; import javax.ejb.Singleton; import javax.ejb.Startup; import javax.enterprise.event.Observes; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; /** * This class will listen to all TimerEvent and will collect them */ @Startup @Singleton public class TimerEventListen...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/WorkerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/WorkerBean.java
package com.baeldung.timer; import javax.ejb.Lock; import javax.ejb.LockType; import javax.ejb.Singleton; import java.util.concurrent.atomic.AtomicBoolean; /** * Created by cristianchiovari on 5/2/16. */ @Singleton public class WorkerBean { private AtomicBoolean busy = new AtomicBoolean(false); @Lock(Lock...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/ScheduleTimerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/ScheduleTimerBean.java
package com.baeldung.timer; import javax.ejb.Schedule; import javax.ejb.Singleton; import javax.ejb.Startup; import javax.ejb.Timer; import javax.enterprise.event.Event; import javax.inject.Inject; @Startup @Singleton public class ScheduleTimerBean { @Inject Event<TimerEvent> event; @Schedule(hour = "*...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/ProgrammaticWithInitialFixedDelayTimerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/ProgrammaticWithInitialFixedDelayTimerBean.java
package com.baeldung.timer; import javax.annotation.PostConstruct; import javax.annotation.Resource; import javax.ejb.*; import javax.enterprise.event.Event; import javax.inject.Inject; /** * author: Cristian Chiovari */ @Startup @Singleton public class ProgrammaticWithInitialFixedDelayTimerBean { @Inject ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/ProgrammaticAtFixedRateTimerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/ProgrammaticAtFixedRateTimerBean.java
package com.baeldung.timer; import javax.annotation.PostConstruct; import javax.annotation.Resource; import javax.ejb.*; import javax.enterprise.event.Event; import javax.inject.Inject; /** * author: Cristian Chiovari */ @Startup @Singleton public class ProgrammaticAtFixedRateTimerBean { @Inject Event<Time...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/FixedDelayTimerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/FixedDelayTimerBean.java
package com.baeldung.timer; import javax.ejb.*; /** * Created by ccristianchiovari on 5/2/16. */ @Singleton public class FixedDelayTimerBean { @EJB private WorkerBean workerBean; @Lock(LockType.READ) @Schedule(second = "*/5", minute = "*", hour = "*", persistent = false) public void atSchedul...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/AutomaticTimerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/AutomaticTimerBean.java
package com.baeldung.timer; import javax.ejb.Schedule; import javax.ejb.Singleton; import javax.ejb.Startup; import javax.enterprise.event.Event; import javax.inject.Inject; import java.util.Date; @Startup @Singleton public class AutomaticTimerBean { @Inject Event<TimerEvent> event; /** * This me...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/ProgrammaticTimerBean.java
web-modules/jee-7/src/main/java/com/baeldung/timer/ProgrammaticTimerBean.java
package com.baeldung.timer; import javax.annotation.PostConstruct; import javax.annotation.Resource; import javax.ejb.*; import javax.enterprise.event.Event; import javax.inject.Inject; /** * author: Jacek Jackowiak */ @Startup @Singleton public class ProgrammaticTimerBean { @Inject Event<TimerEvent> event...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/timer/TimerEvent.java
web-modules/jee-7/src/main/java/com/baeldung/timer/TimerEvent.java
package com.baeldung.timer; public class TimerEvent { private String eventInfo; private long time = System.currentTimeMillis(); public TimerEvent(String s) { this.eventInfo = s; } public long getTime() { return time; } public String getEventInfo() { return eventI...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/arquillian/CarEJB.java
web-modules/jee-7/src/main/java/com/baeldung/arquillian/CarEJB.java
package com.baeldung.arquillian; import java.util.ArrayList; import java.util.List; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; @Stateless public class CarEJB { @PersistenceContext(unitName = "defaultPersistenceU...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/arquillian/CapsService.java
web-modules/jee-7/src/main/java/com/baeldung/arquillian/CapsService.java
package com.baeldung.arquillian; import javax.ejb.Stateless; import javax.inject.Inject; @Stateless public class CapsService { @Inject private CapsConvertor capsConvertor; public String getConvertedCaps(final String word){ return capsConvertor.getLowerCase().convert(word); } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/arquillian/CapsConvertor.java
web-modules/jee-7/src/main/java/com/baeldung/arquillian/CapsConvertor.java
package com.baeldung.arquillian; import javax.ejb.Stateless; @Stateless public class CapsConvertor { public ConvertToLowerCase getLowerCase(){ return new ConvertToLowerCase(); } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/arquillian/Car.java
web-modules/jee-7/src/main/java/com/baeldung/arquillian/Car.java
package com.baeldung.arquillian; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.validation.constraints.NotNull; @Entity public class Car { @Id @GeneratedValue private Long id; @NotNull private String name; public Long getId...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/arquillian/Component.java
web-modules/jee-7/src/main/java/com/baeldung/arquillian/Component.java
package com.baeldung.arquillian; import java.io.PrintStream; public class Component { public void sendMessage(PrintStream to, String msg) { to.println(message(msg)); } public String message(String msg) { return "Message, " + msg; } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/arquillian/ConvertToLowerCase.java
web-modules/jee-7/src/main/java/com/baeldung/arquillian/ConvertToLowerCase.java
package com.baeldung.arquillian; public class ConvertToLowerCase { public String convert(String word){ return word.toLowerCase(); } }
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/EmployeeServiceTopDown.java
web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/EmployeeServiceTopDown.java
package com.baeldung.jaxws.server.topdown; import javax.jws.WebMethod; import javax.jws.WebResult; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.xml.bind.annotation.XmlSeeAlso; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.2.4-b01 * Generated source version: 2.2 *...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/ObjectFactory.java
web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/ObjectFactory.java
package com.baeldung.jaxws.server.topdown; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; /** * This object contains factory methods for each * Java content interface and Java element interface ...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/EmployeeServiceTopDownImpl.java
web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/EmployeeServiceTopDownImpl.java
package com.baeldung.jaxws.server.topdown; import com.baeldung.jaxws.server.repository.EmployeeRepository; import javax.inject.Inject; import javax.jws.WebMethod; import javax.jws.WebService; @WebService(name = "EmployeeServiceTopDown", targetNamespace = "http://topdown.server.jaxws.baeldung.com/", endpointInterfac...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/EmployeeServiceTopDown_Service.java
web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/topdown/EmployeeServiceTopDown_Service.java
package com.baeldung.jaxws.server.topdown; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws.WebS...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false
eugenp/tutorials
https://github.com/eugenp/tutorials/blob/4463e58ffb73fe599bac2479abd84598c6e70a1a/web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/repository/EmployeeRepositoryImpl.java
web-modules/jee-7/src/main/java/com/baeldung/jaxws/server/repository/EmployeeRepositoryImpl.java
package com.baeldung.jaxws.server.repository; import java.util.ArrayList; import java.util.List; import com.baeldung.jaxws.server.bottomup.exception.EmployeeAlreadyExists; import com.baeldung.jaxws.server.bottomup.exception.EmployeeNotFound; import com.baeldung.jaxws.server.bottomup.model.Employee; public class Empl...
java
MIT
4463e58ffb73fe599bac2479abd84598c6e70a1a
2026-01-04T14:45:57.069771Z
false