Java 类javax.naming.event.NamingExceptionEvent 实例源码

项目:freeVM    文件:EventDirCtx.java   
public DirContext getSchema(String name) throws NamingException {
    List l = getListeners(name);
    NamingExceptionEvent e = new NamingExceptionEvent(this,
        new NamingException("Ok"));
    for (int i = 0; i < l.size(); i++) {
        e.dispatch((NamingListener) l.get(i));
    }
    return null;
}
项目:incubator-netbeans    文件:WeakListenerTest.java   
public void namingExceptionThrown(NamingExceptionEvent evt) {
    cnt++;
}
项目:lams    文件:SessionFactoryRegistry.java   
@Override
public void namingExceptionThrown(NamingExceptionEvent evt) {
    //noinspection ThrowableResultOfMethodCallIgnored
          LOG.namingExceptionAccessingFactory(evt.getException());
}
项目:parabuild-ci    文件:SessionFactoryObjectFactory.java   
public void namingExceptionThrown(NamingExceptionEvent evt) {
    log.warn( "Naming exception occurred accessing factory: " + evt.getException() );
}
项目:openjdk-jdk10    文件:RemoveNamingListenerTest.java   
@Override
public void namingExceptionThrown(NamingExceptionEvent nee) {
    //do nothing
}
项目:cacheonix-core    文件:SessionFactoryObjectFactory.java   
public void namingExceptionThrown(NamingExceptionEvent evt) {
    log.warn( "Naming exception occurred accessing factory: " + evt.getException() );
}
项目:daq-eclipse    文件:SimpleCachedLDAPAuthorizationMap.java   
@Override
public void namingExceptionThrown(NamingExceptionEvent evt) {
    SimpleCachedLDAPAuthorizationMap.this.namingExceptionThrown(evt);
}
项目:daq-eclipse    文件:LdapNetworkConnector.java   
/**
 * invoked when an exception has occurred during a persistent search
 */
public void namingExceptionThrown(NamingExceptionEvent event) {
    LOG.error("ERR: caught unexpected exception", event.getException());
}
项目:activemq-artemis    文件:LegacyLDAPSecuritySettingPlugin.java   
@Override
public void namingExceptionThrown(NamingExceptionEvent evt) {
   LegacyLDAPSecuritySettingPlugin.this.namingExceptionThrown(evt);
}
项目:cn1    文件:MockUnsolicitedNotification.java   
/**
 * <p>Method not implemented yet.</p>
 */
public void namingExceptionThrown(NamingExceptionEvent arg0) {
    // TODO Auto-generated method stub

}
项目:cn1    文件:NamingEventTest.java   
public void namingExceptionThrown(NamingExceptionEvent namingexceptionevent) {
    log.log("namingExceptionThrown called, " + namingexceptionevent);
}
项目:cn1    文件:NamingExceptionEventTest.java   
public TestListener(NamingExceptionEvent expectedEvent) {
    this.expectedEvent = expectedEvent;
}
项目:cn1    文件:NamingExceptionEventTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingexceptionevent) {
    assertSame(expectedEvent, namingexceptionevent);
}
项目:cn1    文件:UnsolicitedNotificationEventTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingexceptionevent) {
}
项目:cn1    文件:LdapContextImplTest.java   
public NamingExceptionEvent getExceptionEvent() {
    return ex;
}
项目:cn1    文件:LdapContextImplTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingExceptionEvent) {
    this.ex = namingExceptionEvent;

}
项目:cn1    文件:LdapContextServerMockedTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingExceptionEvent) {
    exceptionEvent = namingExceptionEvent;
}
项目:freeVM    文件:MockUnsolicitedNotification.java   
/**
 * <p>Method not implemented yet.</p>
 */
public void namingExceptionThrown(NamingExceptionEvent arg0) {
    // TODO Auto-generated method stub

}
项目:freeVM    文件:NamingEventTest.java   
public void namingExceptionThrown(NamingExceptionEvent namingexceptionevent) {
    log.log("namingExceptionThrown called, " + namingexceptionevent);
}
项目:freeVM    文件:NamingExceptionEventTest.java   
public TestListener(NamingExceptionEvent expectedEvent) {
    this.expectedEvent = expectedEvent;
}
项目:freeVM    文件:NamingExceptionEventTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingexceptionevent) {
    assertSame(expectedEvent, namingexceptionevent);
}
项目:freeVM    文件:UnsolicitedNotificationEventTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingexceptionevent) {
}
项目:freeVM    文件:MockUnsolicitedNotification.java   
/**
 * <p>Method not implemented yet.</p>
 */
public void namingExceptionThrown(NamingExceptionEvent arg0) {
    // TODO Auto-generated method stub

}
项目:freeVM    文件:NamingEventTest.java   
public void namingExceptionThrown(NamingExceptionEvent namingexceptionevent) {
    log.log("namingExceptionThrown called, " + namingexceptionevent);
}
项目:freeVM    文件:NamingExceptionEventTest.java   
public TestListener(NamingExceptionEvent expectedEvent) {
    this.expectedEvent = expectedEvent;
}
项目:freeVM    文件:NamingExceptionEventTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingexceptionevent) {
    assertSame(expectedEvent, namingexceptionevent);
}
项目:freeVM    文件:UnsolicitedNotificationEventTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingexceptionevent) {
}
项目:freeVM    文件:LdapContextImplTest.java   
public NamingExceptionEvent getExceptionEvent() {
    return ex;
}
项目:freeVM    文件:LdapContextImplTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingExceptionEvent) {
    this.ex = namingExceptionEvent;

}
项目:freeVM    文件:LdapContextServerMockedTest.java   
public void namingExceptionThrown(
        NamingExceptionEvent namingExceptionEvent) {
    exceptionEvent = namingExceptionEvent;
}
项目:freeVM    文件:NamingEventListenerSample.java   
public void namingExceptionThrown(NamingExceptionEvent e) {
    this.e = e;
}
项目:daq-eclipse    文件:SimpleCachedLDAPAuthorizationMap.java   
/**
 * Handler for exception events from the registry.
 *
 * @param namingExceptionEvent
 *            the exception event
 */
public void namingExceptionThrown(NamingExceptionEvent namingExceptionEvent) {
    context = null;
    LOG.error("Caught unexpected exception.", namingExceptionEvent.getException());
}
项目:activemq-artemis    文件:LegacyLDAPSecuritySettingPlugin.java   
/**
 * Handler for exception events from the registry.
 *
 * @param namingExceptionEvent the exception event
 */
public void namingExceptionThrown(NamingExceptionEvent namingExceptionEvent) {
   context = null;
   ActiveMQServerLogger.LOGGER.caughtUnexpectedException(namingExceptionEvent.getException());
}
项目:cn1    文件:MockUnsolicitedNotificationListener.java   
public void namingExceptionThrown(NamingExceptionEvent namingexceptionevent) {

    }
项目:freeVM    文件:MockUnsolicitedNotificationListener.java   
public void namingExceptionThrown(NamingExceptionEvent namingexceptionevent) {

    }
项目:freeVM    文件:MockUnsolicitedNotificationListener.java   
public void namingExceptionThrown(NamingExceptionEvent namingexceptionevent) {

    }