Searched refs:Supplemental (Results 1 - 12 of 12) sorted by relevance
/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/ |
H A D | SupplementalCommandExecutorImpl.java | 64 * An executor that executes Supplemental commands means for current command 92 private Map<String, List<Inhabitant<? extends Supplemental>>> supplementalCommandsMap = null; 94 public ActionReport.ExitCode execute(String commandName, Supplemental.Timing time, 99 List<Inhabitant<? extends Supplemental>> supplementalList = getSupplementalCommandsList().get(commandName); 100 for(Inhabitant<? extends Supplemental> inh : supplementalList) { 102 Supplemental ann = cmdObject.getClass().getAnnotation(Supplemental.class); 106 if( (time.equals(Supplemental.Timing.Before) && aCmd.toBeExecutedBefore()) || 107 (time.equals(Supplemental.Timing.After) && aCmd.toBeExecutedAfter()) ) { 138 private Map<String, List<Inhabitant<? extends Supplemental>>> getSupplementalCommandsLis [all...] |
H A D | PostRegisterInstanceCommand.java | 58 import org.glassfish.api.admin.Supplemental; 74 @Supplemental(value="_register-instance", ifFailure=FailurePolicy.Warn)
|
H A D | PostUnregisterInstanceCommand.java | 55 import org.glassfish.api.admin.Supplemental; 71 @Supplemental(value="_unregister-instance", ifFailure=FailurePolicy.Warn)
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/ |
H A D | Supplemental.java | 63 * <p>An implementation must use the value() attribute of the @Supplemental annotation 80 * @Supplemental("randomCommand") 92 * @Supplemental(value="randomCommand" bridge=MyParameterMapper.class) 107 * @Supplemental("randomCommand") 132 public @interface Supplemental { interface 153 * Supplemental commands can be run before or after the supplemented command.
|
H A D | SupplementalCommandExecutor.java | 60 public ActionReport.ExitCode execute(String commandName, Supplemental.Timing time,
|
/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/admin/ |
H A D | GMSAnnounceAfterStopClusterCommand.java | 63 @Supplemental(value = "stop-cluster", on = Supplemental.Timing.After, ifFailure = FailurePolicy.Warn)
|
H A D | GMSAnnounceAfterStartClusterCommand.java | 64 @Supplemental(value = "start-cluster", on = Supplemental.Timing.After, ifFailure = FailurePolicy.Warn)
|
H A D | GMSAnnounceBeforeStartClusterCommand.java | 69 @Supplemental(value = "start-cluster", on = Supplemental.Timing.Before, ifFailure = FailurePolicy.Warn)
|
H A D | GMSAnnounceBeforeStopClusterCommand.java | 75 @Supplemental(value = "stop-cluster", on = Supplemental.Timing.Before, ifFailure = FailurePolicy.Warn)
|
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/ |
H A D | ValidateRemoteDirDeploymentCommand.java | 59 import org.glassfish.api.admin.Supplemental; 80 @Supplemental(value="deploy", on=Supplemental.Timing.Before, ifFailure=FailurePolicy.Error)
|
H A D | PostDeployCommand.java | 53 import org.glassfish.api.admin.Supplemental; 71 @Supplemental(value="deploy", ifFailure=FailurePolicy.Warn)
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/ |
H A D | CommandRunnerImpl.java | 822 // lets not even look Supplemental command and such. A small optimization 1045 // Run Supplemental commands that have to run before this command on this instance type 1052 Supplemental.Timing.Before, context, parameters, ufm.optionNameToFileMap()); 1072 //Run Supplemental commands that have to be run after this command on this instance type 1076 Supplemental.Timing.After, context, parameters, ufm.optionNameToFileMap());
|
Completed in 21 milliseconds