* @param server to use to the mapping
*/
private SNMPMonitor(MBeanServer server) {
this.server = server;
this.subject = new Subject();
this.subject.getPrincipals().add(new OpendsJmxPrincipal("cn=anonymous"));
InternalClientConnection clientConnection =
InternalClientConnection.getRootConnection();
this.subject.getPrivateCredentials().add(new Credential(clientConnection));
}