return session.getMaxInactiveInterval();
}
public void setMaxInactiveInterval(String sessionID,int interval)throws RemoteException
{
SessionManager manager = namingServer.getEngine().getSessionManager();
WillowSession session=manager.findSession(sessionID);
if(session==null)
{
throw new RemoteException("Session invalid or expired");
}