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

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

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

origin: OryxProject/oryx

loginConfig.setRealmName(InMemoryRealm.NAME);
context.setLoginConfig(loginConfig);
origin: apache/meecrowave

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

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

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

public void setRealmName(final String realmName) {
  loginConfig.setRealmName(realmName);
}
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);
}
org.apache.tomcat.util.descriptor.webLoginConfigsetRealmName

Popular methods of LoginConfig

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • startActivity (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • runOnUiThread (Activity)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Notification (javax.management)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top plugins for Android Studio
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