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
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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