Refactor packages

org.springframework.websocket  -> org.springframework.web.socket
org.springframework.sockjs     -> org.springframework.web.socket.sockjs

Flatten .sockjs and .sockjs.server
This commit is contained in:
Rossen Stoyanchev
2013-05-02 20:39:54 -04:00
parent 4faf0d265f
commit 97d225ba75
84 changed files with 313 additions and 335 deletions

View File

@@ -14,14 +14,15 @@
* limitations under the License.
*/
package org.springframework.sockjs.server.support;
package org.springframework.web.socket.sockjs.support;
import java.util.Map;
import org.junit.Test;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
import org.springframework.sockjs.server.TransportHandler;
import org.springframework.sockjs.server.TransportType;
import org.springframework.web.socket.sockjs.TransportHandler;
import org.springframework.web.socket.sockjs.TransportType;
import org.springframework.web.socket.sockjs.support.DefaultSockJsService;
import static org.junit.Assert.*;