Renamed and harmonized packages

This commit is contained in:
Patrick Gotthard 2014-05-30 16:31:14 +02:00
parent bb532f4e67
commit df2880a92c
6 changed files with 22 additions and 24 deletions

View file

@ -3,13 +3,12 @@
* and open the template in the editor.
*/
package org.rometools.certiorem.example;
import org.rometools.certiorem.hub.Hub;
import org.rometools.certiorem.web.AbstractHubServlet;
package com.rometools.certiorem.webapp;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.rometools.certiorem.hub.Hub;
import com.rometools.certiorem.web.AbstractHubServlet;
/**
*

View file

@ -3,19 +3,19 @@
* and open the template in the editor.
*/
package org.rometools.certiorem.example;
package com.rometools.certiorem.webapp;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.rometools.certiorem.pub.NotificationException;
import org.rometools.certiorem.pub.Publisher;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.inject.Singleton;
import com.rometools.certiorem.pub.NotificationException;
import com.rometools.certiorem.pub.Publisher;
/**
*

View file

@ -2,15 +2,8 @@
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.rometools.certiorem.example;
package com.rometools.certiorem.webapp;
import org.rometools.certiorem.hub.Hub;
import org.rometools.certiorem.hub.data.ram.InMemoryHubDAO;
import org.rometools.certiorem.hub.notify.standard.UnthreadedNotifier;
import org.rometools.certiorem.hub.verify.standard.UnthreadedVerifier;
import org.rometools.certiorem.sub.Subscriptions;
import org.rometools.certiorem.sub.data.ram.InMemorySubDAO;
import org.rometools.certiorem.sub.request.AsyncRequester;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -21,6 +14,13 @@ import com.google.inject.Provides;
import com.google.inject.Singleton;
import com.google.inject.servlet.GuiceServletContextListener;
import com.google.inject.servlet.ServletModule;
import com.rometools.certiorem.hub.Hub;
import com.rometools.certiorem.hub.data.ram.InMemoryHubDAO;
import com.rometools.certiorem.hub.notify.standard.UnthreadedNotifier;
import com.rometools.certiorem.hub.verify.standard.UnthreadedVerifier;
import com.rometools.certiorem.sub.Subscriptions;
import com.rometools.certiorem.sub.data.ram.InMemorySubDAO;
import com.rometools.certiorem.sub.request.AsyncRequester;
import com.rometools.fetcher.FeedFetcher;
import com.rometools.fetcher.impl.HashMapFeedInfoCache;
import com.rometools.fetcher.impl.HttpURLFeedFetcher;

View file

@ -3,13 +3,12 @@
* and open the template in the editor.
*/
package org.rometools.certiorem.example;
import org.rometools.certiorem.sub.Subscriptions;
import org.rometools.certiorem.web.AbstractSubServlet;
package com.rometools.certiorem.webapp;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.rometools.certiorem.sub.Subscriptions;
import com.rometools.certiorem.web.AbstractSubServlet;
/**
*

View file

@ -3,20 +3,20 @@
* and open the template in the editor.
*/
package org.rometools.certiorem.example;
package com.rometools.certiorem.webapp;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.rometools.certiorem.sub.Subscriptions;
import org.rometools.certiorem.sub.data.Subscription;
import org.rometools.certiorem.sub.data.SubscriptionCallback;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.rometools.certiorem.sub.Subscriptions;
import com.rometools.certiorem.sub.data.Subscription;
import com.rometools.certiorem.sub.data.SubscriptionCallback;
import com.rometools.fetcher.impl.SyndFeedInfo;
/**

View file

@ -25,7 +25,7 @@
<listener>
<display-name>Guice config</display-name>
<listener-class>org.rometools.certiorem.example.ServerModule</listener-class>
<listener-class>com.rometools.certiorem.example.ServerModule</listener-class>
</listener>
</web-app>