01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: /*Created on: Nov 23, 2005 */
19:
20: package org.apache.jetspeed.sso;
21:
22: import java.sql.Timestamp;
23: import java.util.Collection;
24:
25: /**
26: * Interface SSOCookie
27: *
28: * @author Roger Ruttimann <rogerrut@apache.org>
29: *
30: * Class sthat handles the cookies created for SSO
31: * principals
32: *
33: */
34: public interface SSOCookie {
35:
36: /** Setters and getters for cookie properties */
37:
38: /**
39: *
40: * @param cookieId
41: */
42: void setCookieId(int cookieId);
43:
44: /**
45: *
46: * @return
47: */
48: int getCookieId();
49:
50: /**
51: *
52: * @param cookieValue
53: */
54: void setCookie(String cookieValue);
55:
56: /**
57: *
58: * @return
59: */
60: String getCookie();
61:
62: /**
63: *
64: * @param createDate
65: */
66: void setCreateDate(Timestamp createDate);
67:
68: /**
69: *
70: * @return
71: */
72: Timestamp getCreateDate();
73:
74: /**
75: *
76: * @return
77: */
78: Collection getRemotePrincipals();
79:
80: /**
81: *
82: * @param remotePrincipals
83: */
84: void setRemotePrincipals(Collection remotePrincipals);
85: }
|