Searched defs:spec (Results 1 - 23 of 23) sorted by relevance

/glassfish-3.1.2/connectors/connectors-inbound-runtime/src/main/java/com/sun/enterprise/connectors/inbound/
H A DActiveInboundResourceAdapter.java89 * validate the activation-spec
90 * @param spec activation-spec
92 public void validateActivationSpec(ActivationSpec spec); argument
H A DActiveInboundResourceAdapterImpl.java72 //beanID -> endpoint factory and its activation spec
149 public void validateActivationSpec(ActivationSpec spec) { argument
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/
H A DAbstractPoolManager.java53 public void emptyResourcePool(ResourceSpec spec) { argument
H A DAssocWithThreadResourcePool.java84 * @param spec ResourceSpec
89 protected ResourceHandle prefetch(ResourceSpec spec, argument
192 protected ResourceHandle getUnenlistedResource(ResourceSpec spec, argument
196 result = super.getUnenlistedResource(spec, alloc, tran);
H A DUnpooledResource.java88 protected ResourceHandle prefetch(ResourceSpec spec, ResourceAllocator alloc, argument
101 protected ResourceHandle getUnenlistedResource(ResourceSpec spec, ResourceAllocator alloc, argument
H A DPoolManager.java93 public ResourceHandle getResourceFromPool(ResourceSpec spec, ResourceAllocator alloc, ClientSecurityInfo info, argument
116 public void emptyResourcePool(ResourceSpec spec); argument
131 * @param spec Specification for the resource
138 public Object getResource(ResourceSpec spec, ResourceAllocator alloc, ClientSecurityInfo info) argument
H A DResourcePool.java63 public ResourceHandle getResource(ResourceSpec spec, argument
H A DPoolManagerImpl.java160 public Object getResource(ResourceSpec spec, ResourceAllocator alloc, ClientSecurityInfo info) argument
167 tran = getResourceManager(spec).getTransaction();
171 getResourceFromPool(spec, alloc, info, tran);
174 spec.setLazyAssociatable(false);
177 if (spec.isLazyAssociatable() &&
178 spec.getConnectionToAssociate() != null) {
182 Object connection = spec.getConnectionToAssociate();
187 putbackDirectToPool(handle, spec.getPoolInfo());
198 spec.setLazyEnlistable(false);
201 handle.setResourceSpec(spec);
238 getResourceFromPool(ResourceSpec spec, ResourceAllocator alloc, ClientSecurityInfo info, Transaction tran) argument
280 getResourceManager(ResourceSpec spec) argument
[all...]
H A DConnectionPool.java336 public ResourceHandle getResource(ResourceSpec spec, ResourceAllocator alloc, Transaction txn) argument
381 result = internalGetResource(spec, alloc, txn);
395 "(ms) to get connection for [" + spec + "] : " +
497 * @param spec ResourceSpec
502 protected ResourceHandle prefetch(ResourceSpec spec, argument
507 protected ResourceHandle internalGetResource(ResourceSpec spec, argument
515 result = getResourceFromTransaction(tran, alloc, spec);
520 result = prefetch(spec, alloc, tran);
526 result = getUnenlistedResource(spec, alloc, tran);
544 * @param spec ResourceSpe
547 getResourceFromTransaction(Transaction tran, ResourceAllocator alloc, ResourceSpec spec) argument
630 getUnenlistedResource(ResourceSpec spec, ResourceAllocator alloc, Transaction tran) argument
703 getResourceFromPool(ResourceAllocator alloc, ResourceSpec spec) argument
872 createSingleResourceAndAdjustPool( ResourceAllocator alloc, ResourceSpec spec) argument
[all...]
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DResourceAdapter.java114 * @param spec an activation spec JavaBean instance.
121 ActivationSpec spec) throws ResourceException;
135 * @param spec an activation spec JavaBean instance.
138 ActivationSpec spec);
120 endpointActivation(MessageEndpointFactory endpointFactory, ActivationSpec spec) argument
137 endpointDeactivation(MessageEndpointFactory endpointFactory, ActivationSpec spec) argument
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/
H A DAssocWithThreadResourceHandle.java56 public AssocWithThreadResourceHandle(Object resource, ResourceSpec spec, ResourceAllocator alloc, argument
58 super(resource, spec, alloc, info);
H A DConnectorXAResource.java74 private ResourceSpec spec; field in class:ConnectorXAResource
93 ResourceSpec spec,
100 this.spec = spec;
101 this.poolInfo = spec.getPoolInfo();
194 return (this.spec.equals(obj.spec) &&
92 ConnectorXAResource(ResourceHandle handle, ResourceSpec spec, com.sun.enterprise.resource.allocator.ResourceAllocator alloc, ClientSecurityInfo info ) argument
H A DResourceHandle.java73 private ResourceSpec spec; field in class:ResourceHandle
109 ResourceSpec spec,
113 this.spec = spec;
135 ResourceSpec spec,
140 this.spec = spec;
209 public void setResourceSpec(ResourceSpec spec) { argument
210 this.spec = spec;
108 ResourceHandle(Object resource, ResourceSpec spec, ResourceAllocator alloc, ClientSecurityInfo info) argument
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/allocator/
H A DConnectorAllocator.java146 ResourceSpec spec,
152 super(poolMgr, mcf, spec, subject, reqInfo, info, desc);
164 createResourceHandle(mc, spec, this, info);
170 Object[] params = new Object[]{spec.getPoolInfo(), ex.toString()};
144 ConnectorAllocator(PoolManager poolMgr, ManagedConnectionFactory mcf, ResourceSpec spec, Subject subject, ConnectionRequestInfo reqInfo, ClientSecurityInfo info, ConnectorDescriptor desc, boolean shareable) argument
H A DLocalTxConnectorAllocator.java67 ResourceSpec spec,
72 super(poolMgr, mcf, spec, subject, reqInfo, info, desc);
89 ResourceHandle resource = createResourceHandle(mc, spec, this, info);
94 XAResource xares = new ConnectorXAResource(resource, spec, this, info);
99 Object[] params = new Object[]{spec.getPoolInfo(), ex.toString()};
65 LocalTxConnectorAllocator(PoolManager poolMgr, ManagedConnectionFactory mcf, ResourceSpec spec, Subject subject, ConnectionRequestInfo reqInfo, ClientSecurityInfo info, ConnectorDescriptor desc, boolean shareable) argument
H A DNoTxConnectorAllocator.java116 ResourceSpec spec,
121 super(poolMgr, mcf, spec, subject, reqInfo, info, desc);
131 createResourceHandle(mc, spec, this, info);
137 Object[] params = new Object[]{spec.getPoolInfo(), ex.toString()};
114 NoTxConnectorAllocator(PoolManager poolMgr, ManagedConnectionFactory mcf, ResourceSpec spec, Subject subject, ConnectionRequestInfo reqInfo, ClientSecurityInfo info, ConnectorDescriptor desc) argument
H A DAbstractConnectorAllocator.java79 protected ResourceSpec spec; field in class:AbstractConnectorAllocator
93 ResourceSpec spec,
100 this.spec = spec;
204 protected ResourceHandle createResourceHandle(Object resource, ResourceSpec spec, argument
209 pt = ConnectorRuntime.getRuntime().getPoolType(spec.getPoolInfo());
211 _logger.log(Level.WARNING,"unable_to_determine_pool_type", spec.getPoolInfo());
214 return new AssocWithThreadResourceHandle(resource, spec, alloc, info);
216 return new ResourceHandle(resource, spec, alloc, info);
91 AbstractConnectorAllocator(PoolManager poolMgr, ManagedConnectionFactory mcf, ResourceSpec spec, Subject subject, ConnectionRequestInfo reqInfo, ClientSecurityInfo info, ConnectorDescriptor desc) argument
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/common/
H A DDataSourceObjectBuilder.java70 private DataSourceSpec spec; field in class:DataSourceObjectBuilder
96 * Construct a DataSource Object from the spec.
98 * @param spec <code> DataSourceSpec </code> object.
100 public DataSourceObjectBuilder(DataSourceSpec spec) { argument
101 this.spec = spec;
106 * Construct the DataSource Object from the spec.
113 driverProperties = parseDriverProperties(spec, true);
124 executor.runJavaBeanMethod(spec.getDetail(DataSourceSpec.USERNAME), methods[i], dataSourceObject);
127 executor.runJavaBeanMethod(spec
189 parseDriverProperties(DataSourceSpec spec, boolean returnUpperCase) argument
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/
H A DConnectionManagerImpl.java250 ResourceSpec spec = new ResourceSpec(jndiNameToUse,
252 spec.setPoolInfo(this.poolInfo);
272 //for figuring out the credentials. Relevant connector spec section
297 spec.setConnectionToAssociate( conn );
301 return getResource(txLevel, poolmgr, mcf, spec, subject, cxRequestInfo, info, desc, shareable);
313 private Object getResource(int txLevel, PoolManager poolmgr, ManagedConnectionFactory mcf, ResourceSpec spec, argument
321 alloc = new NoTxConnectorAllocator(poolmgr, mcf, spec, subject, cxRequestInfo, info, desc);
324 alloc = new LocalTxConnectorAllocator(poolmgr, mcf, spec, subject, cxRequestInfo, info, desc, shareable);
330 spec.markAsXA();
331 alloc = new ConnectorAllocator(poolmgr, mcf, spec, subjec
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/loader/
H A DStandardClassLoader.java917 protected static String parseProtocol(String spec) { argument
918 if (spec == null)
920 int pos = spec.indexOf(':');
923 return spec.substring(0, pos).trim();
/glassfish-3.1.2/security/javax.security.jacc/src/main/java/javax/security/jacc/
H A DHttpMethodSpec.java287 private HttpMethodSpec(HttpMethodSpec spec, BitSet set) argument
289 standardSpec = spec;
290 exceptionList = spec.exceptionList;
291 standardMap = spec.standardMap;
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DManagedConnectionFactory.java96 protected DataSourceSpec spec = new DataSourceSpec(); field in class:ManagedConnectionFactory
214 return spec.hashCode();
307 String conVal = spec.getDetail(DataSourceSpec.CONNECTIONVALIDATIONREQUIRED);
316 String validationMethod = spec.getDetail(DataSourceSpec.VALIDATIONMETHOD).toLowerCase(Locale.getDefault());
326 isValidByCustomValidation(con, spec.getDetail(DataSourceSpec.VALIDATIONCLASSNAME));
332 isValidByTableQuery(con, spec.getDetail(DataSourceSpec.VALIDATIONTABLENAME));
484 String tranIsolation = spec.getDetail(DataSourceSpec.TRANSACTIONISOLATION);
518 String tranIsolation = spec.getDetail(DataSourceSpec.TRANSACTIONISOLATION);
520 String guaranteeIsolationLevel = spec.getDetail(DataSourceSpec.GUARANTEEISOLATIONLEVEL);
713 spec
[all...]
/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/system/
H A DActiveJmsResourceAdapter.java1027 public void validateActivationSpec(ActivationSpec spec) { argument
1031 spec.validate();

Completed in 71 milliseconds