Codota Logo
ParameterList.getParameterValue
Code IndexAdd Codota to your IDE (free)

How to use
getParameterValue
method
in
org.openid4java.message.ParameterList

Best Java code snippets using org.openid4java.message.ParameterList.getParameterValue (Showing top 20 results out of 315)

  • Common ways to obtain ParameterList
private void myMethod () {
ParameterList p =
  • Codota IconHttpServletRequest request;new ParameterList(request.getParameterMap())
  • Codota Iconnew ParameterList()
  • Codota IconMap parameterMap;new ParameterList(parameterMap)
  • Smart code suggestions by Codota
}
origin: org.openid4java/openid4java

/**
 * Get typeURI value for the specified attribute alias.
 */
public String getAttributeTypeUri(String alias) {
  return _parameters.getParameterValue("type." + alias);
}
origin: org.openid4java/openid4java-nodeps

/**
 * Get typeURI value for the specified attribute alias.
 */
public String getAttributeTypeUri(String alias) {
  return _parameters.getParameterValue("type." + alias);
}
origin: org.openid4java/openid4java-nodeps

/**
 * Gets a the value of the parameter with the specified name.
 *
 * @param name      The name of the parameter,
 *                  without the openid.<extension_alias> prefix.
 * @return          The parameter value, or null if not found.
 */
public String getParameterValue(String name)
{
  return _parameters.getParameterValue(name);
}
origin: org.wso2.org.openid4java/openid4java-nodeps

/**
 * Gets a the value of the parameter with the specified name.
 *
 * @param name The name of the parameter,
 *             without the openid.<extension_alias> prefix.
 * @return The parameter value, or null if not found.
 */
public String getParameterValue(String name) {
  return _parameters.getParameterValue(name);
}
origin: org.wso2.org.openid4java/openid4java-nodeps

/**
 * Gets the status of the Store Response if the 'status' parameter is part
 * of the response, or null otherwise.
 */
public String getErrorDescription() {
  return _parameters.getParameterValue("error");
}
origin: com.cloudbees/openid4java-shaded

/**
 * Gets a the value of the parameter with the specified name.
 *
 * @param name      The name of the parameter,
 *                  without the openid.<extension_alias> prefix.
 * @return          The parameter value, or null if not found.
 */
public String getParameterValue(String name)
{
  return _parameters.getParameterValue(name);
}
origin: org.wso2.org.openid4java/openid4java-nodeps

/**
 * Get typeURI value for the specified attribute alias.
 */
public String getAttributeTypeUri(String alias) {
  return _parameters.getParameterValue("type." + alias);
}
origin: com.cloudbees/openid4java-shaded

/**
 * Gets the status of the Store Response if the 'status' parameter is part
 * of the response, or null otherwise.
 */
public String getErrorDescription()
{
  return _parameters.getParameterValue("error");
}
origin: org.wso2.org.openid4java/openid4java-nodeps

/**
 * Gets a the value of the parameter with the specified name.
 *
 * @param name The name of the parameter,
 *             without the openid.<extension_alias> prefix.
 * @return The parameter value, or null if not found.
 */
public String getParameterValue(String name) {
  return _parameters.getParameterValue(name);
}
origin: org.openid4java/openid4java

/**
 * Gets a the value of the parameter with the specified name.
 *
 * @param name      The name of the parameter,
 *                  without the openid.<extension_alias> prefix.
 * @return          The parameter value, or null if not found.
 */
public String getParameterValue(String name)
{
  return _parameters.getParameterValue(name);
}
origin: org.openid4java/openid4java

/**
 * Gets the status of the Store Response if the 'status' parameter is part
 * of the response, or null otherwise.
 */
public String getErrorDescription()
{
  return _parameters.getParameterValue("error");
}
origin: org.openid4java/openid4java

/**
 * Gets a the value of the parameter with the specified name.
 *
 * @param name      The name of the parameter,
 *                  without the openid.<extension_alias> prefix.
 * @return          The parameter value, or null if not found.
 */
public String getParameterValue(String name)
{
  return _parameters.getParameterValue(name);
}
origin: org.openid4java/openid4java-nodeps

/**
 * Returns true if the Store Response is a failure message, true if it is
 * a success response.
 */
public boolean hasFailed()
{
  return "store_response_failure".equals(
    _parameters.getParameterValue("mode") );
}
origin: be.fedict.eid-idp/eid-idp-sp-protocol-openid

/**
 * @return list of preferred languages. Empty list returned if none.
 */
public List<String> getLanguages() {
  String languageString = this.parameters
      .getParameterValue(UserInterfaceMessage.LANGUAGE_PREFIX);
  if (null == languageString) {
    return new LinkedList<String>();
  }
  String[] languages = languageString.split(",");
  return Arrays.asList(languages);
}
origin: com.cloudbees/openid4java-team-extension

  /**
   * Returns all the group names that the user actually belongs to (among the list provided
   * in the {@link TeamExtensionRequest}.
   */
  public Set<String> getTeamMembership() {
    String v = params.getParameterValue("is_member");
    if (v==null)    return Collections.emptySet();  // no value set by the server
    return new TreeSet<String>(Arrays.asList(v.split(",")));
  }
}
origin: org.openid4java/openid4java

/**
 * Gets the optional 'update_url' parameter if available, or null otherwise.
 */
public String getUpdateUrl()
{
  return _parameters.hasParameter("update_url") ?
      _parameters.getParameterValue("update_url") : null;
}
origin: org.openid4java/openid4java-nodeps

/**
 * Gets the optional policy URL parameter if available, or null otherwise.
 */
public String getUpdateUrl()
{
  return _parameters.hasParameter("policy_url") ?
      _parameters.getParameterValue("policy_url") : null;
}
origin: org.openid4java/openid4java

/**
 * Gets the optional 'update_url' parameter if available, or null otherwise.
 */
public String getUpdateUrl()
{
  return _parameters.hasParameter("update_url") ?
      _parameters.getParameterValue("update_url") : null;
}
origin: org.wso2.carbon.identity/org.wso2.carbon.identity.application.authenticator.openid

public int getCount(String alias){
  if("unlimited".equalsIgnoreCase(_parameters.getParameterValue("count." + alias))){
    return 1;
  } else {
    return super.getCount(alias);
  }
}
origin: com.cloudbees/openid4java-shaded

/**
 * Gets the optional 'update_url' parameter if available, or null otherwise.
 */
public String getUpdateUrl()
{
  return _parameters.hasParameter("update_url") ?
      _parameters.getParameterValue("update_url") : null;
}
org.openid4java.messageParameterListgetParameterValue

Popular methods of ParameterList

  • <init>
  • hasParameter
  • getParameters
  • getParameter
  • hasParameterPrefix
  • set
  • copyOf
  • createFromKeyValueForm
  • removeParameters
  • toString

Popular in Java

  • Running tasks concurrently on multiple threads
  • getApplicationContext (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • getContentResolver (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • JCheckBox (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now