Package org.apache.clerezza.triaxrs.headerDelegate

Examples of org.apache.clerezza.triaxrs.headerDelegate.CookieHeaderDelegate


  @Override
  public Map<String, Cookie> getCookies() {
    Map<String, Cookie> cookies = new LinkedHashMap<String, Cookie>();
    List<String> cookieStrings = request.getHeaders().get(HttpHeaders.COOKIE);
    CookieHeaderDelegate cp = new CookieHeaderDelegate();
   
    if(cookieStrings == null) {
      return null;
    }
   
    for (String cookieString : cookieStrings){
      Cookie cookie = cp.fromString(cookieString);
      cookies.put(cookie.getName(), cookie);   
    }
    return cookies;
  }
View Full Code Here

TOP

Related Classes of org.apache.clerezza.triaxrs.headerDelegate.CookieHeaderDelegate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.