725726727728729730731732733734
public ConfigurableJMXAuthenticator getJmxAuthenticator() { if (this.jmxAuthenticator == null) { this.jmxAuthenticator = new SimplePasswordJmxAuthenticator(); this.jmxAuthenticator.configure(credentials); } return jmxAuthenticator; }
28293031323334
private SimplePasswordJmxAuthenticator authenticator; protected void doSetUp () throws Exception { super.doSetUp(); authenticator = new SimplePasswordJmxAuthenticator(); }
34353637383940
private SimplePasswordJmxAuthenticator authenticator; @Before public void setUpAuthenticator () throws Exception { authenticator = new SimplePasswordJmxAuthenticator(); }
732733734735736737738739740741