01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.desktop.context;
06:
07: class DSAMESessionEvent implements SessionEvent {
08: String sid = null;
09:
10: public String getSessionID() {
11: return sid;
12: }
13:
14: public void setSessionID(String sid) {
15: this.sid = sid;
16: }
17: }
|