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