Package com.iplanet.am.util
Class AdminUtils
- java.lang.Object
-
- com.iplanet.am.util.AdminUtils
-
@SupportedAll public class AdminUtils extends Object
This class contains methods to retrieve Top Level Administrator information. The information comes from the server configuration file (serverconfig.xml
).
-
-
Constructor Summary
Constructors Constructor Description AdminUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getAdminDN()
Returns the DN of the Top Level Administrator.static byte[]
getAdminPassword()
Returns the password of the Top Level Administrator.static void
initialize()
-
-
-
Method Detail
-
initialize
public static void initialize()
-
getAdminDN
public static String getAdminDN()
Returns the DN of the Top Level Administrator.- Returns:
- The DN of the Top Level Administrator; null if the Top Level Administrator is not defined in the server configuration file.
-
getAdminPassword
public static byte[] getAdminPassword()
Returns the password of the Top Level Administrator.- Returns:
- The password of the Top Level Administrator; null if the Top Level Administrator is not defined in the server configuration file.
-
-