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

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

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

origin: org.apache.meecrowave/meecrowave-core

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

public LoginConfigBuilder loginPage(final String loginPage) {
  loginConfig.setLoginPage(loginPage);
  return this;
}
origin: org.apache.meecrowave/meecrowave-core

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

public void setLoginPage(final String loginPage) {
  loginConfig.setLoginPage(loginPage);
}
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.loginWarning",
           loginPage));
  config.setLoginPage("/" + loginPage);
} else {
  throw new IllegalArgumentException
origin: codefollower/Tomcat-Research

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

    log.debug(sm.getString("standardContext.loginConfig.loginWarning",
           loginPage));
  config.setLoginPage("/" + loginPage);
} else {
  throw new IllegalArgumentException
org.apache.tomcat.util.descriptor.webLoginConfigsetLoginPage

Popular methods of LoginConfig

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

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSupportFragmentManager (FragmentActivity)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JFrame (javax.swing)
  • Top Vim 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