org.simpleframework.http.Request.getCookies()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(262)

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

Request.getCookies介绍

暂无

代码示例

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This is used to acquire all cookies that were sent in the header.
  3. * If any cookies exists within the HTTP header they are returned
  4. * as <code>Cookie</code> objects. Otherwise this method will an
  5. * empty list. Each cookie object will contain the name, value and
  6. * path of the cookie as well as the optional domain part.
  7. *
  8. * @return this returns all cookie objects from the HTTP header
  9. */
  10. public List<Cookie> getCookies() {
  11. return request.getCookies();
  12. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This is used to acquire all cookies that were sent in the header.
  3. * If any cookies exists within the HTTP header they are returned
  4. * as <code>Cookie</code> objects. Otherwise this method will an
  5. * empty list. Each cookie object will contain the name, value and
  6. * path of the cookie as well as the optional domain part.
  7. *
  8. * @return this returns all cookie objects from the HTTP header
  9. */
  10. public List<Cookie> getCookies() {
  11. return request.getCookies();
  12. }

代码示例来源:origin: org.simpleframework/simple

  1. /**
  2. * This is used to acquire all cookies that were sent in the header.
  3. * If any cookies exists within the HTTP header they are returned
  4. * as <code>Cookie</code> objects. Otherwise this method will an
  5. * empty list. Each cookie object will contain the name, value and
  6. * path of the cookie as well as the optional domain part.
  7. *
  8. * @return this returns all cookie objects from the HTTP header
  9. */
  10. public List<Cookie> getCookies() {
  11. return request.getCookies();
  12. }

代码示例来源:origin: CodeStory/fluent-http

  1. @Override
  2. public Iterator<Cookie> iterator() {
  3. return request.getCookies().stream().<Cookie>map(SimpleCookie::new).iterator();
  4. }

代码示例来源:origin: CodeStory/fluent-http

  1. @Override
  2. public Map<String, String> keyValues() {
  3. return request.getCookies().stream().collect(toMap(org.simpleframework.http.Cookie::getName, org.simpleframework.http.Cookie::getValue));
  4. }

代码示例来源:origin: miltonio/milton2

  1. public List<Cookie> getCookies() {
  2. ArrayList<Cookie> list = new ArrayList<Cookie>();
  3. for (org.simpleframework.http.Cookie c : baseRequest.getCookies()) {
  4. list.add(new SimpletonCookie(c));
  5. }
  6. return list;
  7. }

代码示例来源:origin: restx/restx

  1. @Override
  2. public ImmutableMap<String, String> getCookiesMap() {
  3. Map<String, String> cookies = Maps.newLinkedHashMap();
  4. for (Cookie cookie : request.getCookies()) {
  5. cookies.put(cookie.getName(), cookie.getValue().replace("\\\"", "\""));
  6. }
  7. return ImmutableMap.copyOf(cookies);
  8. }

代码示例来源:origin: io.restx/restx-server-simple

  1. @Override
  2. public ImmutableMap<String, String> getCookiesMap() {
  3. Map<String, String> cookies = Maps.newLinkedHashMap();
  4. for (Cookie cookie : request.getCookies()) {
  5. cookies.put(cookie.getName(), cookie.getValue().replace("\\\"", "\""));
  6. }
  7. return ImmutableMap.copyOf(cookies);
  8. }

代码示例来源:origin: miltonio/milton2

  1. public Cookie getCookie(String name) {
  2. for (org.simpleframework.http.Cookie c : baseRequest.getCookies()) {
  3. if (c.getName().equals(name)) {
  4. return new SimpletonCookie(c);
  5. }
  6. }
  7. return null;
  8. }

相关文章