Moved the stomp2 package to stomp.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@419014 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-07-04 14:17:48 +00:00
parent 1f6aa57df6
commit 98b61e439e
15 changed files with 15 additions and 15 deletions

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.io.IOException;
import java.io.OutputStreamWriter;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.io.IOException;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.io.IOException;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
public interface Stomp {
String NULL = "\u0000";

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.util.Collections;
import java.util.HashMap;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
/**
* Command indicating that an invalid Stomp Frame was received.

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.io.IOException;
import java.util.Iterator;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.util.Map;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.io.IOException;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import java.io.DataInputStream;
import java.io.DataOutputStream;
@ -60,7 +60,7 @@ public class StompWireFormat implements WireFormat {
}
public void marshal(Object command, DataOutputStream os) throws IOException {
StompFrame stomp = (org.apache.activemq.transport.stomp2.StompFrame) command;
StompFrame stomp = (org.apache.activemq.transport.stomp.StompFrame) command;
StringBuffer buffer = new StringBuffer();
buffer.append(stomp.getAction());

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.transport.stomp2;
package org.apache.activemq.transport.stomp;
import org.apache.activeio.command.WireFormat;
import org.apache.activeio.command.WireFormatFactory;

View File

@ -1 +1 @@
class=org.apache.activemq.transport.stomp2.StompTransportFactory
class=org.apache.activemq.transport.stomp.StompTransportFactory

View File

@ -1 +1 @@
class=org.apache.activemq.transport.stomp2.StompWireFormatFactory
class=org.apache.activemq.transport.stomp.StompWireFormatFactory

View File

@ -22,7 +22,7 @@ import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.broker.TransportConnector;
import org.apache.activemq.command.ActiveMQQueue;
import org.apache.activemq.command.ActiveMQTextMessage;
import org.apache.activemq.transport.stomp2.Stomp;
import org.apache.activemq.transport.stomp.Stomp;
import javax.jms.Connection;
import javax.jms.JMSException;