org.eclipse.jetty.server.Request.removeAttribute()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(6.6k)|赞(0)|评价(0)|浏览(98)

本文整理了Java中org.eclipse.jetty.server.Request.removeAttribute方法的一些代码示例,展示了Request.removeAttribute的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.removeAttribute方法的具体详情如下:
包路径:org.eclipse.jetty.server.Request
类名称:Request
方法名:removeAttribute

Request.removeAttribute介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.jetty/jetty-security

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (isCheckWelcomeFiles() && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-plus

/**
 * @see org.eclipse.jetty.continuation.Continuation#removeAttribute(java.lang.String)
 */
public void removeAttribute(String name)
{
  _connection.getRequest().removeAttribute(name);
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-all-server

public void parsedRequestAttribute(String key, Buffer value) throws IOException
{
  if (value==null)
    _request.removeAttribute(key);
  else
    _request.setAttribute(key,value.toString());
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-all-server

/**
 * @see org.eclipse.jetty.continuation.Continuation#removeAttribute(java.lang.String)
 */
public void removeAttribute(String name)
{
  _connection.getRequest().removeAttribute(name);
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-server

/**
 * @see org.eclipse.jetty.continuation.Continuation#removeAttribute(java.lang.String)
 */
public void removeAttribute(String name)
{
  _connection.getRequest().removeAttribute(name);
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

public void removeAttribute(String name)
{
  _channel.getRequest().removeAttribute(name);
}

代码示例来源:origin: org.eclipse.jetty/server

/**
 * @see org.eclipse.jetty.continuation.Continuation#removeAttribute(java.lang.String)
 */
public void removeAttribute(String name)
{
  _connection.getRequest().removeAttribute(name);
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-webapp

/**
 * @see org.eclipse.jetty.continuation.Continuation#removeAttribute(java.lang.String)
 */
public void removeAttribute(String name)
{
  _connection.getRequest().removeAttribute(name);
}

代码示例来源:origin: Nextdoor/bender

public void removeAttribute(String name)
{
  _channel.getRequest().removeAttribute(name);
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

public void removeAttribute(String name)
{
  _channel.getRequest().removeAttribute(name);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

public void removeAttribute(String name)
{
  _channel.getRequest().removeAttribute(name);
}

代码示例来源:origin: jenkinsci/winstone

public void removeAttribute(String name)
{
  _channel.getRequest().removeAttribute(name);
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-webapp

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (_checkWelcomeFiles && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-all-server

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (_checkWelcomeFiles && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-plus

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (_checkWelcomeFiles && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

代码示例来源:origin: org.eclipse.jetty/security

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (_checkWelcomeFiles && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

代码示例来源:origin: org.keycloak/spring-boot-container-bundle

public void logoutCurrent(Request request) {
  AdapterDeploymentContext deploymentContext = (AdapterDeploymentContext) request.getAttribute(AdapterDeploymentContext.class.getName());
  KeycloakSecurityContext ksc = (KeycloakSecurityContext) request.getAttribute(KeycloakSecurityContext.class.getName());
  if (ksc != null) {
    JettyHttpFacade facade = new OIDCJettyHttpFacade(request, null);
    KeycloakDeployment deployment = deploymentContext.resolveDeployment(facade);
    if (ksc instanceof RefreshableKeycloakSecurityContext) {
      ((RefreshableKeycloakSecurityContext) ksc).logout(deployment);
    }
    AdapterTokenStore tokenStore = getTokenStore(request, facade, deployment);
    tokenStore.logout();
    request.removeAttribute(KeycloakSecurityContext.class.getName());
  }
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (isCheckWelcomeFiles() && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

代码示例来源:origin: org.keycloak/keycloak-jetty-core

public void logoutCurrent(Request request) {
  AdapterDeploymentContext deploymentContext = (AdapterDeploymentContext) request.getAttribute(AdapterDeploymentContext.class.getName());
  KeycloakSecurityContext ksc = (KeycloakSecurityContext) request.getAttribute(KeycloakSecurityContext.class.getName());
  if (ksc != null) {
    JettyHttpFacade facade = new OIDCJettyHttpFacade(request, null);
    KeycloakDeployment deployment = deploymentContext.resolveDeployment(facade);
    if (ksc instanceof RefreshableKeycloakSecurityContext) {
      ((RefreshableKeycloakSecurityContext) ksc).logout(deployment);
    }
    AdapterTokenStore tokenStore = getTokenStore(request, facade, deployment);
    tokenStore.logout();
    request.removeAttribute(KeycloakSecurityContext.class.getName());
  }
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

protected boolean checkSecurity(Request request)
{
  switch(request.getDispatcherType())
  {
    case REQUEST:
    case ASYNC:
      return true;
    case FORWARD:
      if (isCheckWelcomeFiles() && request.getAttribute("org.eclipse.jetty.server.welcome") != null)
      {
        request.removeAttribute("org.eclipse.jetty.server.welcome");
        return true;
      }
      return false;
    default:
      return false;
  }
}

相关文章

微信公众号

最新文章

更多

Request类方法