fixed retrieval of the redirect url when there is & in the redirected url
[pnews.git] / war / src / main / java / pnews / servlet / ArticleFactory.java
1 package pnews.servlet;
2
3 import pnews.Article;
4
5 @FunctionalInterface
6 public interface ArticleFactory {
7         Article create();
8 }