Skip to content

Commit bf879dd

Browse files
author
Arun Gupta
committed
Fixing package name
Better messages Added NetBeans configuration file
1 parent e2f4ec1 commit bf879dd

5 files changed

Lines changed: 23 additions & 5 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project-shared-configuration>
3+
<!--
4+
This file contains additional configuration written by modules in the NetBeans IDE.
5+
The configuration is intended to be shared among all the users of project and
6+
therefore it is assumed to be part of version control checkout.
7+
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
8+
-->
9+
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
10+
<!--
11+
Properties that influence various parts of the IDE, especially code formatting and the like.
12+
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
13+
That way multiple projects can share the same settings (useful for formatting rules for example).
14+
Any value defined here will override the pom.xml file value but is only applicable to the current project.
15+
-->
16+
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>gfv3ee6</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
17+
</properties>
18+
</project-shared-configuration>

websocket/websocket-client-programmatic/src/main/java/org/sample/client/MyClient.java renamed to websocket/websocket-client-programmatic/src/main/java/org/javaee7/websocket/client/programmatic/MyClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40-
package org.sample.client;
40+
package org.javaee7.websocket.client.programmatic;
4141

4242
import java.io.IOException;
4343
import java.util.logging.Level;

websocket/websocket-client-programmatic/src/main/java/org/sample/client/MyEndpoint.java renamed to websocket/websocket-client-programmatic/src/main/java/org/javaee7/websocket/client/programmatic/MyEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40-
package org.sample.client;
40+
package org.javaee7.websocket.client.programmatic;
4141

4242
import javax.websocket.OnMessage;
4343
import javax.websocket.server.ServerEndpoint;

websocket/websocket-client-programmatic/src/main/java/org/sample/client/TestClient.java renamed to websocket/websocket-client-programmatic/src/main/java/org/javaee7/websocket/client/programmatic/TestClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40-
package org.sample.client;
40+
package org.javaee7.websocket.client.programmatic;
4141

4242
import java.io.IOException;
4343
import java.io.PrintWriter;

websocket/websocket-client-programmatic/src/main/webapp/index.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
<html>
4848
<head>
4949
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
50-
<title>WebSocket Client - Programmatic</title>
50+
<title>WebSocket : Programmatic Client</title>
5151
</head>
5252
<body>
53-
<h1>WebSocket Client - Programmatic</h1>
53+
<h1>WebSocket : Programmatic Client</h1>
5454

5555
<a href="${pageContext.request.contextPath}/TestClient">Call endpoint</a><br/>
5656
</body>

0 commit comments

Comments
 (0)