Package net.pterodactylus.sone.core.event

Examples of net.pterodactylus.sone.core.event.SoneInsertAbortedEvent


            sone.setLatestEdition(finalUri.getEdition());
            core.touchConfiguration();
            success = true;
            logger.log(Level.INFO, String.format("Inserted Sone “%s” at %s.", sone.getName(), finalUri));
          } catch (SoneException se1) {
            eventBus.post(new SoneInsertAbortedEvent(sone, se1));
            logger.log(Level.WARNING, String.format("Could not insert Sone “%s”!", sone.getName()), se1);
          } finally {
            sone.setStatus(SoneStatus.idle);
          }
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.core.event.SoneInsertAbortedEvent

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.