Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
llowinge committed Jan 6, 2025
1 parent 4ae7f78 commit 7e5592a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package org.acme.cxf.soap.pojo;

import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.context.SessionScoped;
import jakarta.enterprise.inject.Produces;
import jakarta.inject.Named;
import org.acme.cxf.soap.pojo.service.ContactService;
Expand All @@ -31,7 +30,7 @@
public class MyPojoRouteBuilder extends RouteBuilder {

@Produces
@SessionScoped
@ApplicationScoped
@Named
CxfEndpoint contact() {
CxfEndpoint contactEndpoint = new CxfEndpoint();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import com.example.customerservice.NoSuchCustomer;
import com.example.customerservice.NoSuchCustomerException;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.enterprise.context.SessionScoped;
import jakarta.enterprise.inject.Produces;
import jakarta.inject.Named;
import org.acme.cxf.soap.wsdl.repository.CustomerRepository;
Expand All @@ -46,7 +45,7 @@ public MyWsdlRouteBuilder(CustomerRepository customerRepository) {
}

@Produces
@SessionScoped
@ApplicationScoped
@Named
CxfEndpoint customer() {
CxfEndpoint customersEndpoint = new CxfEndpoint();
Expand Down

0 comments on commit 7e5592a

Please sign in to comment.