| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
| H A D | DispatchTargetsInfo.java | 70 private String[] targets = new String[2]; field in class:DispatchTargetsInfo 77 targets[0] = targets[1]; 78 targets[1] = target; 85 return targets[0];
|
| /glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
| H A D | CodeEnv.java | 54 private Hashtable targets = new Hashtable(7); field in class:CodeEnv 62 InsnTarget targ = (InsnTarget)targets.get(off); 65 targets.put(off, targ); 72 return (InsnTarget)targets.get(off);
|
| H A D | LineNumberTableAttribute.java | 58 private InsnTarget targets[]; field in class:LineNumberTableAttribute 66 ConstUtf8 nameAttr, short lineNums[], InsnTarget targets[]) { 69 this.targets = targets; 93 out.writeShort(targets[i].offset()); 104 Integer.toString(targets[i].offset())); 65 LineNumberTableAttribute( ConstUtf8 nameAttr, short lineNums[], InsnTarget targets[]) argument
|
| /glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/ |
| H A D | DeploymentHandler.java | 86 @HandlerInput(name="targets", type=String[].class, required=true ), 186 String[] targets = (String[])handlerCtx.getInputValue("targets"); 187 if (targets == null || targets.length==0){ 191 payload.put("target", targets[0]); 192 for(int i=1; i< targets.length; i++){ 193 appRefs.add(targets[i]); 297 //Hard coding to server, fix me for actual targets in EE. 301 List targets 333 removeFromDefaultWebModule(String undeployedAppName, List<String> targets) argument [all...] |
| /glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/ |
| H A D | DeployUtil.java | 67 static public boolean reloadApplication(String appName, List<String> targets, HandlerContext handlerCtx){ argument 73 for(String targetName : targets){ 97 //This method returns the list of targets (clusters and standalone instances) of any deployed application 99 List targets = new ArrayList(); 107 targets.add(oneCluster); 115 targets.add(oneServer); 125 return targets;
|
| /glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/common/util/admin/ |
| H A D | ParameterMapExtractor.java | 72 * injected targets, typically AdminCommand or CommandParameters 79 * @param targets the objects to inspect for injected @Param values 80 * @throws IllegalArgumentException if a null is passed for the targets 82 public ParameterMapExtractor(final Object... targets) { argument 83 if (targets == null) { 86 injectionTargets = targets; 104 * @return ParameterMap for the parameters injected into the targets passed to the constructor
|
| /glassfish-3.1.2/security/javax.security.auth.message/src/main/java/javax/security/auth/message/ |
| H A D | MessagePolicy.java | 125 * targets within a message. Message targets are represented using 136 private Target[] targets; field in class:MessagePolicy.TargetPolicy 143 * @param targets An array of Targets. This argument may be null. 147 * targets. 149 * @exception IllegalArgumentException if the specified targets 152 public TargetPolicy(Target[] targets, argument 158 if (targets == null || targets.length == 0) { 159 this.targets [all...] |
| /glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/ |
| H A D | ToolsImpl.java | 190 public String validate(final ObjectName[] targets) { argument 193 for (final ObjectName objectName : targets) {
|
| /glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/ |
| H A D | ProgressObjectImpl.java | 112 public ProgressObjectImpl(TargetImpl[] targets) { argument 113 this.targetsList = targets; 114 this.target = targets[0]; 121 public ProgressObjectImpl(Target[] targets) { argument 122 this(toTargetImpl(targets)); 143 public static TargetImpl[] toTargetImpl(Target[] targets) { argument 144 TargetImpl[] result = new TargetImpl[targets.length]; 146 for (Target t : targets) {
|
| H A D | SunDeploymentManager.java | 157 * Retrieve the list of deployment targets supported by 179 * to the identified targets and that are currently running 206 * to the identified targets and that are currently not 232 * or not running on the identified targets. 282 *Get all modules in the specified state from the targets specified in the 285 *@param array of Target indicating which targets should be searched for matching modules 476 * the designated deployment targets. 478 * @param targetList A list of server targets the user is specifying 502 * the designated deployment targets. 504 * @param targetList A list of server targets th 1449 private Collection targets = new Vector(); field in class:SunDeploymentManager.DeploymentFacilityModuleWork 1482 public Target [] targets() { method in class:SunDeploymentManager.DeploymentFacilityModuleWork [all...] |
| /glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/ |
| H A D | DeploymentFacility.java | 103 * @param targets the Target objects to which to deploy the application - an empty array indicates a request to deploy to the default server 112 public DFProgressObject deploy(Target[] targets, URI source, argument 115 public DFProgressObject deploy(Target[] targets, ReadableArchive source, argument 119 public DFProgressObject undeploy(Target[] targets, String moduleID); argument 122 * Initiates an undeployment operation of the specified module affecting the selected targets. 125 * the TargetModuleID objects representing the targets from which the module has been undeployed. 126 * @param targets the Target objects indicating which targets from which to undeploy the application; an empty targets array is a request to undeploy from the default server 131 public DFProgressObject undeploy(Target[] targets, Strin argument 136 enable(Target[] targets, String moduleID) argument 141 disable(Target[] targets, String moduleID) argument 146 createAppRef(Target[] targets, String moduleID, Map options) argument 151 deleteAppRef(Target[] targets, String moduleID, Map options) argument 178 listAppRefs(String[] targets) argument 183 _listAppRefs(String[] targets) argument 188 _listAppRefs(String[] targets, String state) argument 193 _listAppRefs(String[] targets, String state, String type) argument 198 _listAppRefs(Target[] targets, String state, String type) argument [all...] |
| H A D | AbstractDeploymentFacility.java | 130 * @param targets targets on which the change should occur 136 protected DFProgressObject changeState(Target[] targets, String moduleID, String commandName, String action) { argument 138 targets = prepareTargets(targets); 139 ProgressObjectImpl po = new ProgressObjectImpl(targets); 143 for (Target target : targets) { 160 po.setupForNormalExit(localStrings.getLocalString("enterprise.deployment.client.change_state_all", "{0} of application in all targets", action), (TargetImpl)targets[0], targetModuleIDs); 163 po.setupForAbnormalExit(localStrings.getLocalString("enterprise.deployment.client.state_change_failed", "Attempt to change the state of the application {0} failed - {1}", moduleID, ioex.toString()), (TargetImpl)targets[ 205 createAppRef(Target[] targets, String moduleID, Map options) argument 209 deleteAppRef(Target[] targets, String moduleID, Map options) argument 213 changeAppRef(Target[] targets, String moduleID, String commandName, String action, Map options) argument 251 createTargets(String[] targets) argument 263 createTargetsParam(Target[] targets) argument 274 deploy(Target[] targets, ReadableArchive source, ReadableArchive deploymentPlan, Map deploymentOptions) argument 351 deploy(Target[] targets, URI source, URI deploymentPlan, Map deploymentOptions) argument 473 disable(Target[] targets, String moduleID) argument 487 enable(Target[] targets, String moduleID) argument 847 listAppRefs(String[] targets) argument 898 _listAppRefs(String[] targets) argument 902 _listAppRefs(String[] targets, String state) argument 906 _listAppRefs(String[] targets, String state, String type) argument 911 _listAppRefs(Target[] targets, String state, String type) argument 985 prepareTargets(Target[] targets) argument 1009 undeploy(Target[] targets, String moduleID) argument 1020 undeploy(Target[] targets, String moduleID, Map undeploymentOptions) argument 1179 isTargetsMatched(String appName, Target[] targets) argument [all...] |
| /glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/ |
| H A D | MonitoringReporter.java | 97 if (!targets.isEmpty()) { 98 for (Server server : targets) { 372 targets = allServers; 380 targets = allServers; 396 targets = allServers; 448 targets.add(das); 453 targets = targetService.getInstances(targetName); 455 if (targets.isEmpty()) { 592 targets = Collections.emptyList(); 601 List<Server> notdas = new ArrayList<Server>(targets 650 List<Server> targets = new ArrayList<Server>(); field in class:MonitoringReporter [all...] |
| /glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/ |
| H A D | AMXValidator.java | 1297 final ObjectName[] targets = CollectionUtil.toArray( c, ObjectName.class ); 1298 return validate( targets ); 1301 public ValidationResult validate(final ObjectName[] targets) argument 1309 for (final ObjectName objectName : targets)
|