Package org.sonatype.nexus.proxy.events

Examples of org.sonatype.nexus.proxy.events.RepositoryEventProxyModeSet


          resetRemoteStatus();
        }

        if (sendNotification) {
          // this one should be fired _always_
          eventBus().post(new RepositoryEventProxyModeSet(this, oldProxyMode, proxyMode, cause));

          if (proxyMode != null && !proxyMode.equals(oldProxyMode)) {
            // this one should be fired on _transition_ only
            eventBus().post(new RepositoryEventProxyModeChanged(this, oldProxyMode, proxyMode, cause));
          }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.events.RepositoryEventProxyModeSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.