1 28 29 package com.caucho.server.session; 30 31 import javax.servlet.http.Cookie ; 32 33 36 public class CookieImpl extends Cookie { 37 private String _port; 39 40 43 public CookieImpl(String name, String value) 44 { 45 super(name, value); 46 } 47 48 51 public String getPort() 52 { 53 return _port; 54 } 55 56 59 public void setPort(String port) 60 { 61 _port = port; 62 } 63 } 64 | Popular Tags |