18 lines
292 B
Java
18 lines
292 B
Java
package com.honeywell.generic.ui.framework;
|
|
|
|
public interface IUIFwSession {
|
|
void addBean(String str, Object obj);
|
|
|
|
void clearBeans();
|
|
|
|
Object getBean(String str);
|
|
|
|
int getBeanCount();
|
|
|
|
String[] getBeanNames();
|
|
|
|
long getLastAccessTime();
|
|
|
|
String getSessionId();
|
|
}
|