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

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

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

Request.getRemoteUser介绍

暂无

代码示例

代码示例来源:origin: jphp-group/jphp

@Signature
public String remoteUser() {
  return request.getRemoteUser();
}

代码示例来源:origin: i2p/i2p.i2p

String user = request.getRemoteUser();
buf.append((user == null)? " - " : user);
buf.append(" [");

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

@Override
public String getRemoteUser()
{
  if(_remoteUser != null)
    return _remoteUser;
  return super.getRemoteUser();
}

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

public String changeSessionId()
{
  HttpSession session = getSession(false);
  if (session == null)
    throw new IllegalStateException("No session");
  if (session instanceof AbstractSession)
  {
    AbstractSession abstractSession =  ((AbstractSession)session);
    abstractSession.renewId(this);
    if (getRemoteUser() != null)
      abstractSession.setAttribute(AbstractSession.SESSION_CREATED_SECURE, Boolean.TRUE);
    if (abstractSession.isIdChanged())
      _channel.getResponse().addCookie(_sessionManager.getSessionCookie(abstractSession, getContextPath(), isSecure()));
  }
  return session.getId();
}

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

public String changeSessionId()
{
  HttpSession session = getSession(false);
  if (session == null)
    throw new IllegalStateException("No session");
  if (session instanceof AbstractSession)
  {
    AbstractSession abstractSession =  ((AbstractSession)session);
    abstractSession.renewId(this);
    if (getRemoteUser() != null)
      abstractSession.setAttribute(AbstractSession.SESSION_KNOWN_ONLY_TO_AUTHENTICATED, Boolean.TRUE);
    if (abstractSession.isIdChanged())
      _channel.getResponse().addCookie(_sessionManager.getSessionCookie(abstractSession, getContextPath(), isSecure()));
  }
  return session.getId();
}

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

public String changeSessionId()
{
  HttpSession session = getSession(false);
  if (session == null)
    throw new IllegalStateException("No session");
  if (session instanceof AbstractSession)
  {
    AbstractSession abstractSession =  ((AbstractSession)session);
    abstractSession.renewId(this);
    if (getRemoteUser() != null)
      abstractSession.setAttribute(AbstractSession.SESSION_KNOWN_ONLY_TO_AUTHENTICATED, Boolean.TRUE);
    if (abstractSession.isIdChanged())
      _channel.getResponse().addCookie(_sessionManager.getSessionCookie(abstractSession, getContextPath(), isSecure()));
  }
  return session.getId();
}

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

public String changeSessionId()
{
  HttpSession session = getSession(false);
  if (session == null)
    throw new IllegalStateException("No session");
  if (session instanceof AbstractSession)
  {
    AbstractSession abstractSession =  ((AbstractSession)session);
    abstractSession.renewId(this);
    if (getRemoteUser() != null)
      abstractSession.setAttribute(AbstractSession.SESSION_KNOWN_ONLY_TO_AUTHENTICATED, Boolean.TRUE);
    if (abstractSession.isIdChanged())
      _channel.getResponse().addCookie(_sessionManager.getSessionCookie(abstractSession, getContextPath(), isSecure()));
  }
  return session.getId();
}

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

@Override
public String changeSessionId()
{
  HttpSession session = getSession(false);
  if (session == null)
    throw new IllegalStateException("No session");
  if (session instanceof Session)
  {
    Session s =  ((Session)session);
    s.renewId(this);
    if (getRemoteUser() != null)
      s.setAttribute(Session.SESSION_CREATED_SECURE, Boolean.TRUE);
    if (s.isIdChanged() && _sessionHandler.isUsingCookies())
      _channel.getResponse().addCookie(_sessionHandler.getSessionCookie(s, getContextPath(), isSecure()));
  }
  return session.getId();
}

相关文章

微信公众号

最新文章

更多

Request类方法