Skip to content

Commit 07f6ac6

Browse files
committed
Copyright year and author fix
Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
1 parent 37a222e commit 07f6ac6

26 files changed

+29
-58
lines changed

tests/integration/spring5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/AccountJerseyResource.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -35,7 +35,6 @@
3535
/**
3636
* Jersey managed JAX-RS resource for testing jersey-spring.
3737
*
38-
* @author Marko Asplund (marko.asplund at yahoo.com)
3938
*/
4039
@Path("/jersey/account")
4140
public class AccountJerseyResource {

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/AccountService.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -20,8 +20,6 @@
2020

2121
/**
2222
* Simple account service to testify injection into different scopes.
23-
*
24-
* @author Marko Asplund (marko.asplund at yahoo.com)
2523
*/
2624
public interface AccountService {
2725

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/AccountServiceImpl.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -26,8 +26,6 @@
2626

2727
/**
2828
* AccountService implementation.
29-
*
30-
* @author Marko Asplund (marko.asplund at yahoo.com)
3129
*/
3230
public class AccountServiceImpl implements AccountService {
3331

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/AccountSpringResource.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -35,8 +35,6 @@
3535

3636
/**
3737
* Spring managed JAX-RS resource for testing jersey-spring.
38-
*
39-
* @author Marko Asplund (marko.asplund at yahoo.com)
4038
*/
4139
@Path("/spring/account")
4240
@Component

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/ControllerResource.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -24,9 +24,6 @@
2424

2525
import org.springframework.stereotype.Controller;
2626

27-
/**
28-
* @author Konrad Garus (konrad.garus at gmail.com)
29-
*/
3027
@Controller
3128
@Path("/spring/controller")
3229
public class ControllerResource {

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/Endpoint.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -23,9 +23,6 @@
2323

2424
import org.springframework.stereotype.Component;
2525

26-
/**
27-
* @author Konrad Garus (konrad.garus at gmail.com)
28-
*/
2926
@Retention(RetentionPolicy.RUNTIME)
3027
@Target(ElementType.TYPE)
3128
@Component

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/EndpointResource.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -22,9 +22,6 @@
2222
import javax.ws.rs.Path;
2323
import javax.ws.rs.core.MediaType;
2424

25-
/**
26-
* @author Konrad Garus (konrad.garus at gmail.com)
27-
*/
2825
@Endpoint
2926
@Path("/spring/endpoint")
3027
public class EndpointResource {

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/HK2ServicePerLookup.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -19,7 +19,6 @@
1919
/**
2020
* Type to be handled as HK2 per-lookup bean.
2121
*
22-
* @author Marko Asplund (marko.asplund at yahoo.com)
2322
*/
2423
public class HK2ServicePerLookup {
2524
}

tests/integration/spring5/src/main/java/org/glassfish/jersey/server/spring/test/HK2ServiceRequestScoped.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -19,7 +19,6 @@
1919
/**
2020
* Type to be handled as HK2 request scoped bean.
2121
*
22-
* @author Marko Asplund (marko.asplund at yahoo.com)
2322
*/
2423
public class HK2ServiceRequestScoped {
2524
}

0 commit comments

Comments
 (0)