Skip to content

Commit

Permalink
Correct name of packages
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Bescos Gascon <[email protected]>
  • Loading branch information
jbescos authored and senivam committed Jul 16, 2020
1 parent 0cfd0ac commit 03d8a72
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package org.glassfish.jersey.tests.integration.servlet_25_mvc_4;
package org.glassfish.jersey.tests.integration.servlet_40_mvc_1;

import org.glassfish.jersey.message.GZipEncoder;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.server.filter.EncodingFilter;
import org.glassfish.jersey.server.mvc.jsp.JspMvcFeature;
import org.glassfish.jersey.tests.integration.servlet_25_mvc_4.resource.ExampleResource;
import org.glassfish.jersey.tests.integration.servlet_40_mvc_1.resource.ExampleResource;

public class MyApplication extends ResourceConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package org.glassfish.jersey.tests.integration.servlet_25_mvc_4.resource;
package org.glassfish.jersey.tests.integration.servlet_40_mvc_1.resource;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
version="4.0"
metadata-complete="true">
<filter>
<filter-name>org.glassfish.jersey.tests.integration.servlet_25_mvc_4.MyApplication</filter-name>
<filter-name>org.glassfish.jersey.tests.integration.servlet_40_mvc_1.MyApplication</filter-name>
<filter-class>org.glassfish.jersey.servlet.ServletContainer</filter-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>org.glassfish.jersey.tests.integration.servlet_25_mvc_4.MyApplication</param-value>
<param-value>org.glassfish.jersey.tests.integration.servlet_40_mvc_1.MyApplication</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>org.glassfish.jersey.tests.integration.servlet_25_mvc_4.MyApplication</filter-name>
<filter-name>org.glassfish.jersey.tests.integration.servlet_40_mvc_1.MyApplication</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package org.glassfish.jersey.tests.integration.servlet_25_mvc_4;
package org.glassfish.jersey.tests.integration.servlet_40_mvc_1;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package org.glassfish.jersey.tests.integration.servlet_25_mvc_4;
package org.glassfish.jersey.tests.integration.servlet_40_mvc_1;

import javax.ws.rs.core.Application;

Expand All @@ -23,6 +23,7 @@
import org.glassfish.jersey.test.external.ExternalTestContainerFactory;
import org.glassfish.jersey.test.spi.TestContainerException;
import org.glassfish.jersey.test.spi.TestContainerFactory;
import org.glassfish.jersey.tests.integration.servlet_40_mvc_1.MyApplication;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
Expand Down

0 comments on commit 03d8a72

Please sign in to comment.