mirror of https://github.com/apache/activemq.git
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:
parent
fd4bb60c2d
commit
f1a084efeb
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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;
|
|
@ -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;
|
|
@ -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;
|
|
@ -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;
|
||||
|
|
@ -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;
|
|
@ -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;
|
|
@ -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);
|
||||
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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;
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue