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 DSAMEUserEvent implements UserEvent {
08: String uid = null;
09:
10: public String getUserID() {
11: return uid;
12: }
13:
14: public void setUserID(String uid) {
15: this.uid = uid;
16: }
17: }
|