Package com.rimfaxe.webserver.servletapi.session

Examples of com.rimfaxe.webserver.servletapi.session.HttpSetCookie


       this.setCookies.addElementconvertCookie(cookie)  );      
    }

    private HttpSetCookie convertCookie(Cookie cookie)
    {
  HttpSetCookie scookie = new HttpSetCookie(true,cookie.getName(),cookie.getValue());
  scookie.setComment(cookie.getComment());
  scookie.setDomain(cookie.getDomain());
  scookie.setMaxAge(cookie.getMaxAge());
  scookie.setPath(cookie.getPath());
  scookie.setSecurity(cookie.getSecure());
  scookie.setVersion(cookie.getVersion());
        //System.out.println("Set-Cookie = "+scookie.toString());
  return scookie;
    }
View Full Code Here

TOP

Related Classes of com.rimfaxe.webserver.servletapi.session.HttpSetCookie

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.