01: package org.theospi.portfolio.security;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: * User: John Ellis
06: * Date: Feb 27, 2006
07: * Time: 4:03:58 PM
08: * To change this template use File | Settings | File Templates.
09: */
10: public interface DefaultRealmManager {
11:
12: public boolean isNewlyCreated();
13:
14: String getNewRealmName();
15: }
|