Package com.foreach.across.core.annotations

Examples of com.foreach.across.core.annotations.Installer.phase()


      if ( metadata == null ) {
        throw new AcrossException( "Installer " + installer.getClass() + " should have @Installer annotation" );
      }

      if ( metadata.phase() == phase ) {
        if ( areDependenciesMet( installerClass ) ) {
          LOG.trace( "Dependencies for installer {} are met.", installerClass );

          // Create installer instance if necessary
          Object instance = determineInstallerInstance( installer );
View Full Code Here


          LOG.debug( "Skipping installer {} because dependencies are not met.", installerClass );
        }
      }
      else {
        LOG.trace( "Ignoring installer {} because it is defined for phase {}", installerClass,
                   metadata.phase().name() );
      }
    }

    LOG.trace( "Finished {} installers for module {}", phase.name(), moduleConfig.getModuleName() );
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.