Searched defs:constraint (Results 1 - 25 of 30) sorted by relevance

12

/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/customvalidators/
H A DConfigRefValidator.java66 public void initialize(final ConfigRefConstraint constraint) { argument
H A DConnectionPoolValidator.java66 public void initialize(final ConnectionPoolConstraint constraint) { argument
67 this.poolFaults = constraint.value();
H A DRefValidator.java53 * A simple constraint that validates lb-config children.
60 public void initialize(final RefConstraint constraint) { argument
H A DResourceNameValidator.java56 public void initialize(final ResourceNameConstraint constraint) { argument
H A DResourcePoolReferenceValidator.java50 public void initialize(final ResourcePoolReferenceConstraint constraint) { argument
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/constraint/
H A DConstraintConstant.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintField.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintFieldDesc.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintFieldNameSubQuery.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintForeignFieldName.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
53 * This constraint is used to represent a foreign constraint.
H A DConstraintJoin.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintNode.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintOperation.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintOrder.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintParamIndex.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintSubquery.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraintValue.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
58 /** The local field to which this value constraint is bound. Please note
H A DConstraintFieldName.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
H A DConstraint.java48 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint;
86 * Adds a field to the constraint stack.
90 * and adds it to the constraint stack.
105 * Adds a field to the constraint stack.
108 * field descriptor and adds it to the constraint stack.
119 * Adds a field to the constraint stack.
122 * field descriptor and adds it to the constraint stack.
144 * Adds an operation to the constraint stack.
147 * operation and adds it to the constraint stack.
158 * Adds a data value to the constraint stac
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DDynamicServletRegistrationImpl.java84 public Set<String> setServletSecurity(ServletSecurityElement constraint) { argument
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/mapping/
H A DConstraintField.java83 * @param cacheOnMatch should the constraint check pass, should we cache?
96 /** set whether to cache should there be a failure forcing the constraint
97 * @param cacheOnMatchFailure should there be a constraint check failure,
112 * add a constraint for this field
113 * @param constraint one constraint associated with this field
115 public void addConstraint(ValueConstraint constraint) { argument
116 if (constraint == null)
124 results[constraints.length] = constraint;
153 "The constraint fiel
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/jqlc/
H A DVariableTable.java73 * - constraint: the variable is constraint with the specified expr
79 * The constraint expression.
81 JQLAST constraint; field in class:VariableTable.VarInfo
90 * The constraint for this variable may use another variable.
105 this.constraint = null;
113 this.constraint = other.constraint;
162 // init var entry as not constraint and unused
193 * The method sets the constraint fiel
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DRealm.java186 * this request, or <code>null</code> if there is no such constraint.
209 * Perform access control based on the specified authorization constraint.
210 * Return <code>true</code> if this constraint is satisfied and processing
215 * @param constraint Security constraint we are enforcing
222 SecurityConstraint[] constraint,
262 * @param constraints Security constraint we are enforcing
316 * Enforce any user data constraint required by the security constraint
317 * guarding this request URI. Return <code>true</code> if this constraint
220 hasResourcePermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraint, Context context) argument
327 hasUserDataPermission(HttpRequest request, HttpResponse response, SecurityConstraint[] constraint) argument
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/
H A DRetrieveDescImpl.java57 import com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint.Constraint;
58 import com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint.ConstraintFieldName;
145 /** The constraint stack */
146 private Constraint constraint; field in class:RetrieveDescImpl
182 constraint = new Constraint();
210 // For projections on foreign fields, mark the foreign constraint.
211 // For local fields, set the property on the field constraint.
269 "core.constraint.illegalop", "" + opCode)); // NOI18N
306 * <P>Adds a constraint on the foreign field specified by
310 * If <code>name</code> is null, an unrelated constraint i
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/
H A DSelectQueryPlan.java62 import com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint.*;
89 * Pointer to the retrieve descriptor's constraint stack.
93 protected Constraint constraint; field in class:SelectQueryPlan
141 * Takes care of adding an "And" constraint for unbound constraints, e.g.
142 * "empid == department.deptid". As the foreign constraint stack is empty,
143 * we would not add the necessary "And" constraint otherwise.
214 constraint = retrieveDesc.getConstraint();
225 return constraint;
651 * Asociates every local constraint on the stack with it's original plan
658 List stack = constraint
[all...]

Completed in 95 milliseconds

12