CCM NG: Changed constant name for path of admin servlet from ADMIN_SERVLET to ADMIN_SERVLET_PATH
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@3836 8810af33-2d31-482b-a856-94f89814c4dfpull/2/head
parent
d2bfec2a1b
commit
e1f6a45065
|
|
@ -404,7 +404,7 @@ interface AdminConstants {
|
||||||
|
|
||||||
public final static String ADMIN_PAGE_URL = "/admin/";
|
public final static String ADMIN_PAGE_URL = "/admin/";
|
||||||
|
|
||||||
public final static String ADMIN_SERVLET = "/admin/*";
|
public final static String ADMIN_SERVLET_PATH = "/admin/*";
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ import javax.servlet.annotation.WebServlet;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
import static com.arsdigita.ui.login.LoginConstants.*;
|
import static com.arsdigita.ui.admin.AdminConstants.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Web Developer Support Application Servlet class, central entry point to
|
* Web Developer Support Application Servlet class, central entry point to
|
||||||
|
|
@ -60,7 +60,7 @@ import static com.arsdigita.ui.login.LoginConstants.*;
|
||||||
* @author Jens Pelzetter
|
* @author Jens Pelzetter
|
||||||
* @author pb
|
* @author pb
|
||||||
*/
|
*/
|
||||||
@WebServlet(urlPatterns = {LOGIN_SERVLET_PATH})
|
@WebServlet(urlPatterns = {ADMIN_SERVLET_PATH})
|
||||||
public class AdminServlet extends BaseApplicationServlet implements
|
public class AdminServlet extends BaseApplicationServlet implements
|
||||||
AdminConstants {
|
AdminConstants {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue