org.tynamo.security.internal.services.LoginContextService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapestry-security Show documentation
Show all versions of tapestry-security Show documentation
Tynamo Security package for Tapestry 5 based on Shiro Security
package org.tynamo.security.internal.services;
import java.io.IOException;
public interface LoginContextService {
@Deprecated
// to be removed in 0.7
String getLoginPage();
@Deprecated
// to be removed in 0.7
String getSuccessPage();
@Deprecated
// to be removed in 0.7
String getUnauthorizedPage();
String getLoginURL();
String getSuccessURL();
String getUnauthorizedURL();
String getLocalelessPathWithinApplication();
String getLocaleFromPath(String path);
void saveRequest();
void removeSavedRequest();
@Deprecated
// to be removed in 0.7
void saveRequest(String contextPath);
void redirectToSavedRequest(String fallbackUrl) throws IOException;
}