Tabnine Logo
LoginConfig.setErrorPage
Code IndexAdd Tabnine to your IDE (free)

How to use
setErrorPage
method
in
org.apache.tomcat.util.descriptor.web.LoginConfig

Best Java code snippets using org.apache.tomcat.util.descriptor.web.LoginConfig.setErrorPage (Showing top 10 results out of 315)

origin: org.apache.meecrowave/meecrowave-core

public LoginConfigBuilder errorPage(final String errorPage) {
  loginConfig.setErrorPage(errorPage);
  return this;
}
origin: apache/meecrowave

public void setErrorPage(final String errorPage) {
  loginConfig.setErrorPage(errorPage);
}
origin: org.apache.meecrowave/meecrowave-core

public void setErrorPage(final String errorPage) {
  loginConfig.setErrorPage(errorPage);
}
origin: apache/meecrowave

public LoginConfigBuilder errorPage(final String errorPage) {
  loginConfig.setErrorPage(errorPage);
  return this;
}
origin: codefollower/Tomcat-Research

/**
 * Construct a new LoginConfig with the specified properties.
 *
 * @param authMethod The authentication method
 * @param realmName The realm name
 * @param loginPage The login page URI
 * @param errorPage The error page URI
 */
public LoginConfig(String authMethod, String realmName,
          String loginPage, String errorPage) {
  super();
  setAuthMethod(authMethod);
  setRealmName(realmName);
  setLoginPage(loginPage);
  setErrorPage(errorPage);
}
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

/**
 * Construct a new LoginConfig with the specified properties.
 *
 * @param authMethod The authentication method
 * @param realmName The realm name
 * @param loginPage The login page URI
 * @param errorPage The error page URI
 */
public LoginConfig(String authMethod, String realmName,
          String loginPage, String errorPage) {
  super();
  setAuthMethod(authMethod);
  setRealmName(realmName);
  setLoginPage(loginPage);
  setErrorPage(errorPage);
}
origin: org.apache.tomcat/tomcat-util-scan

/**
 * Construct a new LoginConfig with the specified properties.
 *
 * @param authMethod The authentication method
 * @param realmName The realm name
 * @param loginPage The login page URI
 * @param errorPage The error page URI
 */
public LoginConfig(String authMethod, String realmName,
          String loginPage, String errorPage) {
  super();
  setAuthMethod(authMethod);
  setRealmName(realmName);
  setLoginPage(loginPage);
  setErrorPage(errorPage);
}
origin: org.apache.tomcat/tomcat-catalina

    log.debug(sm.getString("standardContext.loginConfig.errorWarning",
           errorPage));
  config.setErrorPage("/" + errorPage);
} else {
  throw new IllegalArgumentException
origin: codefollower/Tomcat-Research

    log.debug(sm.getString("standardContext.loginConfig.errorWarning",
           errorPage));
  config.setErrorPage("/" + errorPage);
} else {
  throw new IllegalArgumentException
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

    log.debug(sm.getString("standardContext.loginConfig.errorWarning",
           errorPage));
  config.setErrorPage("/" + errorPage);
} else {
  throw new IllegalArgumentException
org.apache.tomcat.util.descriptor.webLoginConfigsetErrorPage

Popular methods of LoginConfig

  • getErrorPage
  • getLoginPage
  • setAuthMethod
  • <init>
    Construct a new LoginConfig with the specified properties.
  • getAuthMethod
  • setLoginPage
  • setRealmName
  • getRealmName
  • equals

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Collectors (java.util.stream)
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now