/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/scope/ |
H A D | Definition.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 72 protected int scope; field in class:Definition 90 * Set the scope of the identifier's definition. 92 public void setScope(int scope) argument 94 this.scope = scope; 98 * Returns the scope of the identifier's definition. 102 return scope;
|
H A D | Field.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 83 return I18NHelper.getMessage(messages, "scope.field.getname.name"); //NOI18N 101 buf.append(scope);
|
H A D | Parameter.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 76 return I18NHelper.getMessage(messages, "scope.parameter.getname.name"); //NOI18N 86 buf.append(scope);
|
H A D | TypeName.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 82 return I18NHelper.getMessage(messages, "scope.classname.getname.name"); //NOI18N 100 buf.append(scope);
|
H A D | Variable.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 76 return I18NHelper.getMessage(messages, "scope.variable.getname.name"); //NOI18N 86 buf.append(scope);
|
H A D | Nesting.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 64 * List of idents with hidden definitions in the actual scope.
|
H A D | SymbolTable.java | 47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope; 62 * The actual scope level. 77 * Opens a new scope. 88 * Closes the actual scope. 98 * Returns the level of the actual scope. 99 * @return actual scope level. 107 * Add identifier to the actual scope. 109 * scope the symbol table is NOT changed and the old definition 111 * level scope is saved in the actual nesting and the new definition 113 * definition when the sctaul scope i [all...] |
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
H A D | PersistenceStrategyBuilderFactory.java | 81 String persistenceType, String frequency, String scope, 89 // Deliberately leaving frequency & scope null 92 resolvedPersistenceScope = scope; 118 builder.setPersistenceScope(scope); 80 createPersistenceStrategyBuilder( String persistenceType, String frequency, String scope, Context ctx) argument
|
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/ |
H A D | ResourceRef.java | 98 public static final String SCOPE = "scope"; 114 * @param scope Resource scope 118 String scope, String auth) { 119 this(resourceClass, description, scope, auth, null, null); 127 * @param scope Resource scope 131 String scope, String auth, String factory, 139 if (scope != null) { 140 refAddr = new StringRefAddr(SCOPE, scope); 117 ResourceRef(String resourceClass, String description, String scope, String auth) argument 130 ResourceRef(String resourceClass, String description, String scope, String auth, String factory, String factoryLocation) argument [all...] |
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/mapping/ |
H A D | Field.java | 64 // field name and scope 67 // scope defs in Constants 68 protected int scope; field in class:Field 71 * create a new cache field, given a string representation of the scope 73 * @param scope scope of this field 75 public Field (String name, String scope) throws IllegalArgumentException { argument 77 this.scope = parseScope(scope); 89 * set the associated scope 92 setScope(int scope) argument [all...] |
H A D | ConstraintField.java | 51 * values; Field name and its scope are inherited from the Field class. 73 * create a new cache field, given a string representation of the scope 75 * @param scope scope of this field 77 public ConstraintField(String name, String scope) argument 79 super(name, scope); 154 + " is not found in the scope " + SCOPE_NAMES[scope] 164 + value.toString() + " is found in scope " 165 + SCOPE_NAMES[scope] [all...] |
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/taglibs/cache/ |
H A D | CacheUtil.java | 72 * attribute in the specified scope. 75 public static Cache getCache(PageContext pc, int scope) argument 77 return (Cache)pc.getAttribute(Constants.JSPTAG_CACHE_KEY, scope); 111 * Converts the string representation of the given scope into an int. 113 * @param scope The string representation of the scope 117 * @throws IllegalArgumentException if the specified scope is different 120 public static int convertScope(String scope) { argument 124 if (REQUEST_SCOPE.equalsIgnoreCase(scope)) { 126 } else if (SESSION_SCOPE.equalsIgnoreCase(scope)) { [all...] |
H A D | FlushTag.java | 69 * This specifies the scope of the cache that needs to be flushed. 97 // get the cache from the specified scope 148 * Sets the scope of the cache. 150 * @param scope the scope of the cache 152 * @throws IllegalArgumentException if the specified scope is different 155 public void setScope(String scope) { argument 156 _scope = CacheUtil.convertScope(scope);
|
H A D | CacheTag.java | 106 * This specifies the scope of the cache. 338 * Sets the scope of the cache. 340 * @param scope the scope of the cache 342 * @throws IllegalArgumentException if the specified scope is different 345 public void setScope(String scope) { argument 346 _scope = CacheUtil.convertScope(scope);
|
/glassfish-3.1.2/build/maven-glassfishbuild-plugin/src/main/java/com/sun/enterprise/build/ |
H A D | AbstractGlassfishMojo.java | 136 protected Set<Artifact> findArtifactsOfScope(Set<Artifact> artifacts, final String scope) { argument 140 return s.equals(scope);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/ |
H A D | ContextResource.java | 123 * The sharing scope of this resource factory (<code>Shareable</code> 126 private String scope = "Shareable"; field in class:ContextResource 129 return (this.scope); 132 public void setScope(String scope) { argument 133 this.scope = scope; 174 if (scope != null) { 175 sb.append(", scope="); 176 sb.append(scope);
|
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | SOAPMessageContextImpl.java | 131 public void setScope(String name, Scope scope) { argument
|
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/ |
H A D | ComponentEnvManagerImpl.java | 307 private void addDataSourceBindings(JndiNameEnvironment env, ScopeType scope, Collection<JNDIBinding> jndiBindings) { argument 311 if (!dependencyAppliesToScope(dsd, scope)) { 407 private void addEnvironmentProperties(ScopeType scope, Iterator envItr, Collection<JNDIBinding> jndiBindings) { argument 413 if( !dependencyAppliesToScope(next, scope)) { 435 private void addResourceReferences(ScopeType scope, Iterator resRefItr, Collection<JNDIBinding> jndiBindings) { argument 441 if( !dependencyAppliesToScope(resourceRef, scope)) { 494 private void addJNDIBindings(JndiNameEnvironment env, ScopeType scope, Collection<JNDIBinding> jndiBindings) { argument 497 // match the given scope. 499 addEnvironmentProperties(scope, env.getEnvironmentProperties().iterator(), jndiBindings); 507 if( !dependencyAppliesToScope(next, scope)) { 681 dependencyAppliesToScope(Descriptor descriptor, ScopeType scope) argument 689 dependencyAppliesToScope(String name, ScopeType scope) argument [all...] |
/glassfish-3.1.2/admin/util/src/main/java/org/glassfish/admin/cli/resources/ |
H A D | ResourcesXMLParser.java | 156 String scope = ""; 157 generateResourceObjects(scope); 161 public ResourcesXMLParser(File resourceFile, String scope) throws Exception { argument 165 generateResourceObjects(scope); 263 private void generateResourceObjects(String scope) throws Exception argument 271 generateCustomResource(nextKid, scope); 275 generateJNDIResource(nextKid, scope); 279 generateJDBCResource(nextKid, scope); 283 generateJDBCConnectionPoolResource(nextKid, scope); 287 generateMailResource(nextKid, scope); 467 getScopedName(String name, String scope) argument 528 generateCustomResource(Node nextKid, String scope) argument 566 generateJNDIResource(Node nextKid, String scope) argument 603 generateJDBCResource(Node nextKid, String scope) argument 646 generateJDBCConnectionPoolResource(Node nextKid, String scope) argument 886 generateMailResource(Node nextKid, String scope) argument 950 generateAdminObjectResource(Node nextKid, String scope) argument 994 generateConnectorResource(Node nextKid, String scope) argument 1077 generateConnectorConnectionPoolResource(Node nextKid, String scope) argument 1257 generateWorkSecurityMap(Node node, String scope) argument 1322 generateSecurityMap(String poolName,Node mapNode, String scope) argument 1385 generateResourceAdapterConfig(Node nextKid, String scope) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/ |
H A D | WebdavServlet.java | 1037 lock.scope = tempScope.substring 1040 lock.scope = tempScope; 1046 if (lock.scope == null) { 1134 + lock.scope + "-" + req.getUserPrincipal() + "-" 2716 String scope = "exclusive"; field in class:WebdavServlet.LockInfo 2734 result.append("Scope:").append(scope).append("\n"); 2761 return (scope.equals("exclusive")); 2779 generatedXML.writeElement(null, scope, XMLWriter.NO_CONTENT); 3068 * a particular resource within its scope because some part of
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/ |
H A D | DatabaseMetaDataWrapper.java | 1679 * <LI><B>SCOPE_CATLOG</B> String => catalog of table that is the scope 1681 * <LI><B>SCOPE_SCHEMA</B> String => schema of table that is the scope 1683 * <LI><B>SCOPE_TABLE</B> String => table name that this the scope 1801 * <LI><B>SCOPE</B> short => actual scope of result 1833 * @param scope the scope of interest; use same values as SCOPE 1838 public ResultSet getBestRowIdentifier(String catalog, String schema, String table, int scope, argument 1840 return databaseMetaData.getBestRowIdentifier(catalog, schema, table, scope, nullable); 2717 * scope of a reference attribute (<code>null</code> if DATA_TYPE isn't REF) 2719 * scope o [all...] |
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | EjbDescriptor.java | 82 // Used in <transaction-scope> element in XML 860 * Gets the transaction scope of this ejb. 862 * @return true if bean has distributed tx scope (default). 869 * Set the transaction scope of this ejb. 871 public void setDistributedTransactionScope(boolean scope) { argument 872 isDistributedTxScope = scope;
|