Searched defs:commandType (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/
H A DDeploymentStatusImplWithError.java70 public DeploymentStatusImplWithError(CommandType commandType, Throwable cause) { argument
74 setCommand(commandType);
H A DDeploymentStatusImpl.java57 CommandType commandType = null; field in class:DeploymentStatusImpl
83 return commandType;
139 public void setCommand(CommandType commandType) { argument
140 this.commandType = commandType;
H A DProgressObjectImpl.java77 protected CommandType commandType; field in class:ProgressObjectImpl
395 public void setCommand(CommandType commandType, Object[] args) { argument
396 this.commandType = commandType;
468 return commandType;
H A DSunDeploymentManager.java1066 *@param commandType the CommandType in progress - used in preparing the progress object (if needed)
1073 private ProgressObject closeArchives(CommandType commandType, ReadableArchive moduleArchive, String moduleArchiveSpec, ReadableArchive planArchive, String planArchiveSpec) { argument
1132 errorPO = prepareErrorProgressObject(commandType, ioe);
1163 *@param commandType selects which method should be invoked
1169 CommandType commandType, TargetModuleID[] targetModuleIDList)
1193 if (commandType.equals(CommandType.START)) {
1196 } else if (commandType.equals(CommandType.STOP)) {
1199 } else if (commandType.equals(CommandType.UNDEPLOY)) {
1206 new Object [] {commandType.toString()}
1224 return prepareErrorProgressObject(commandType, th
1168 executeCommandUsingFacility( CommandType commandType, TargetModuleID[] targetModuleIDList) argument
1234 prepareErrorProgressObject(CommandType commandType, Throwable thr) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/common/util/admin/
H A DCommandModelImpl.java78 public CommandModelImpl(Class<?> commandType) { argument
80 Service service = commandType.getAnnotation(Service.class);
82 commandClass = commandType;
83 i18n = commandType.getAnnotation(I18n.class);
84 execOn = commandType.getAnnotation(ExecuteOn.class);
85 localStrings = new LocalStringManagerImpl(commandType);
87 params = init(commandType, i18n, localStrings);
88 Class currentClazz = commandType;
99 public static Map<String, ParamModel> init(Class commandType, I18n i18n, LocalStringManager localStrings) { argument
101 Class currentClazz = commandType;
[all...]

Completed in 19 milliseconds