refactoring to org.apache.activemq package names.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@359590 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2005-12-28 18:47:30 +00:00
parent fd4bb60c2d
commit f1a084efeb
13 changed files with 21 additions and 21 deletions

View File

@ -8,7 +8,7 @@
<echo>Running the Web Application</echo>
<java classname="org.activemq.web.JettyServer" fork="yes" maxmemory="100M">
<java classname="org.apache.activemq.web.JettyServer" fork="yes" maxmemory="100M">
<classpath refid="test.classpath"/>
</java>
</goal>

View File

@ -13,11 +13,11 @@
Web Connector for REST API and Streamlets support
</shortDescription>
<package>org.activemq.web</package>
<package>org.apache.activemq.web</package>
<packageGroups>
<packageGroup>
<title>Web Connector for REST API and Streamlets support</title>
<packages>org.activemq.web</packages>
<packages>org.apache.activemq.web</packages>
</packageGroup>
</packageGroups>

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import java.io.IOException;
import java.io.PrintWriter;

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import org.activemq.command.ActiveMQQueue;
import org.activemq.command.ActiveMQTopic;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import javax.servlet.ServletException;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import javax.jms.Destination;
import javax.jms.JMSException;

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import org.activemq.broker.BrokerService;
import org.activemq.xbean.BrokerFactoryBean;

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import java.io.Externalizable;
import java.io.IOException;
@ -54,10 +54,10 @@ import edu.emory.mathcs.backport.java.util.concurrent.Semaphore;
* @version $Revision: 1.1.1.1 $
*/
public class WebClient implements HttpSessionActivationListener, Externalizable {
public static final String webClientAttribute = "org.activemq.webclient";
public static final String connectionFactoryAttribute = "org.activemq.connectionFactory";
public static final String queueConsumersAttribute = "org.activemq.queueConsumers";
public static final String brokerUrlInitParam = "org.activemq.brokerURL";
public static final String webClientAttribute = "org.apache.activemq.webclient";
public static final String connectionFactoryAttribute = "org.apache.activemq.connectionFactory";
public static final String queueConsumersAttribute = "org.apache.activemq.queueConsumers";
public static final String brokerUrlInitParam = "org.apache.activemq.brokerURL";
private static final Log log = LogFactory.getLog(WebClient.class);

View File

@ -13,20 +13,20 @@
<!-- context config -->
<context-param>
<param-name>org.activemq.brokerURL</param-name>
<param-name>org.apache.activemq.brokerURL</param-name>
<param-value>vm://localhost</param-value>
<description>The URL of the Message Broker to connect to</description>
</context-param>
<context-param>
<param-name>org.activemq.embeddedBroker</param-name>
<param-name>org.apache.activemq.embeddedBroker</param-name>
<param-value>true</param-value>
<description>Whether we should include an embedded broker or not</description>
</context-param>
<!-- connection manager -->
<listener>
<listener-class>org.activemq.web.ConnectionManager</listener-class>
<listener-class>org.apache.activemq.web.ConnectionManager</listener-class>
</listener>
@ -35,14 +35,14 @@
<!-- the main REST servlet -->
<servlet>
<servlet-name>MessageServlet</servlet-name>
<servlet-class>org.activemq.web.MessageServlet</servlet-class>
<servlet-class>org.apache.activemq.web.MessageServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- servlets for the portfolio demo -->
<servlet>
<servlet-name>PortfolioPublishServlet</servlet-name>
<servlet-class>org.activemq.web.PortfolioPublishServlet</servlet-class>
<servlet-class>org.apache.activemq.web.PortfolioPublishServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
package org.activemq.web;
package org.apache.activemq.web;
import org.mortbay.jetty.Connector;
import org.mortbay.jetty.Handler;

View File

@ -3,7 +3,7 @@
#
log4j.rootLogger=INFO, out
log4j.logger.org.activemq.spring=WARN
log4j.logger.org.apache.activemq.spring=WARN
# CONSOLE appender not used by default
log4j.appender.stdout=org.apache.log4j.ConsoleAppender