Added missing serialVersionUIDs
This commit is contained in:
parent
5ccf176ac3
commit
536f926dcc
4 changed files with 14 additions and 4 deletions
|
@ -12,14 +12,17 @@ import com.google.inject.Inject;
|
|||
import com.google.inject.Singleton;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author robert.cooper
|
||||
*/
|
||||
@Singleton
|
||||
public class HubServlet extends AbstractHubServlet {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Inject
|
||||
public HubServlet(final Hub hub) {
|
||||
super(hub);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -19,12 +19,14 @@ import org.rometools.certiorem.pub.Publisher;
|
|||
import com.google.inject.Singleton;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author robert.cooper
|
||||
*/
|
||||
@Singleton
|
||||
public class NotifyTest extends HttpServlet {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Override
|
||||
public void doGet(final HttpServletRequest request, final HttpServletResponse response) throws ServletException {
|
||||
final Publisher pub = new Publisher();
|
||||
|
@ -35,4 +37,5 @@ public class NotifyTest extends HttpServlet {
|
|||
throw new ServletException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -12,12 +12,14 @@ import com.google.inject.Inject;
|
|||
import com.google.inject.Singleton;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author robert.cooper
|
||||
*/
|
||||
@Singleton
|
||||
public class SubServlet extends AbstractSubServlet {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Inject
|
||||
public SubServlet(final Subscriptions subscriptions) {
|
||||
super(subscriptions);
|
||||
|
|
|
@ -18,12 +18,14 @@ import com.google.inject.Inject;
|
|||
import com.google.inject.Singleton;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author robert.cooper
|
||||
*/
|
||||
@Singleton
|
||||
public class SubTest extends HttpServlet {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private final Subscriptions subs;
|
||||
|
||||
@Inject
|
||||
|
|
Loading…
Reference in a new issue