Searched defs:instances (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/api/
H A DUndoableCommand.java60 * successfully on some instances but fail on others necessitating to rollback the
61 * entire set of instances to a state previous to the action execution.
95 * servers instances are on-line and can be notified of the change.
101 * <p>Note that if, as part of prepare, remote instances have to be contacted, then it is the responsibility of
121 * implementation to invoke remote instances to do the actual undo if required
125 * @param instances instances on which the command succeeded
127 public void undo(AdminCommandContext context, ParameterMap parameters, List<Server> instances); argument
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/servedcontent/
H A DCachingDynamicContentImpl.java69 *We save and track only a few individual response instances, because the assumption
81 /** maximum number of instances of content to keep for each template */
93 /** content instances resulting from previous HTTP GET requests */
94 private final LinkedList<Instance> instances = new LinkedList<Instance>(); field in class:CachingDynamicContentImpl
96 /** max. number of instances to cache */
154 synchronized (instances) {
155 for (Instance i : instances) {
176 synchronized (instances) {
177 instances.addFirst(newInstance);
178 if (instances
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/audit/
H A DAuditManager.java102 private List instances = Collections.synchronizedList(new ArrayList()); field in class:AuditManager
170 instances.add(auditModule);
205 // clone list to resolve multi-thread issues in looping instances
207 Collections.copy(instances, list);
209 instances = Collections.synchronizedList(list);
221 // clone list to resolve multi-thread issues in looping instances
223 Collections.copy(instances, list);
225 instances = Collections.synchronizedList(list);
261 List list = instances;
286 List list = instances;
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DDynamicInterceptor.java105 //get the instances list
106 List<String> instances = result.getInstances();
239 List<String> instances = result.getInstances();
242 instances.add("server");
253 instances.add("server");
256 // gets set for DAS and instances. For instance, we want only default MBean server
257 // So if this instance is not DAS, we just return server so the instances will
259 instances.add("server");
261 instances.add("server");
264 instances
954 private List<String> instances = new ArrayList<String>(); field in class:DynamicInterceptor.ReplicationInfo
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEJBContextImpl.java596 void setInterceptorInstances(Object[] instances) { argument
597 this.interceptorInstances = instances;
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Deffects.js218 instances: $H(),
222 return this.instances.get(queueName) ||
223 this.instances.set(queueName, new Effect.ScopedQueue());
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Deffects.js252 instances: $H(),
256 if(!this.instances[queueName])
257 this.instances[queueName] = new Effect.ScopedQueue();
259 return this.instances[queueName];
/glassfish-3.1.2/persistence/cmp/generator-database/src/main/java/com/sun/jdo/spi/persistence/generator/database/
H A DMappingPolicy.java87 // kind of like instances of structs, with each base naming an instance
374 * per dbvendor, is shared by all MappingPolicy instances.
453 /** Map from database vendor names to instances of MappingPolicy. */
454 private static final Map instances = new HashMap(); field in class:MappingPolicy
545 instances.put(DBVendorTypeHelper.DEFAULT_DB, this);
564 instances.put(databaseType, this);
597 mappingPolicy = (MappingPolicy) instances.get(databaseType);

Completed in 43 milliseconds