Searched refs:operation (Results 1 - 25 of 36) sorted by relevance

12

/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/constraint/
H A DConstraintOperation.java59 public int operation; field in class:ConstraintOperation
65 public ConstraintOperation(int operation) { argument
68 this.operation = operation;
76 if (operation == ActionDesc.OP_ORDERBY
77 || operation == ActionDesc.OP_ORDERBY_DESC) {
H A DConstraint.java89 * named field, optionally including an operation descriptor
97 * The desc parameter specifies an operation descriptor describing
144 * Adds an operation to the constraint stack.
146 * AddOperation creates a ConstraintOperation node whose operation is
147 * operation and adds it to the constraint stack.
149 * @param operation
150 * The operation parameter specifies the operation to be added to
153 public void addOperation(int operation) { argument
154 stack.add(new ConstraintOperation(operation));
[all...]
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/
H A DMessageNormalizer.java63 * @param operation operation requested.
68 SOAPWrapper soapWrapper, NormalizedMessage normalizedMessage, Operation operation)
67 normalizeMessage( SOAPWrapper soapWrapper, NormalizedMessage normalizedMessage, Operation operation) argument
H A DMessageDenormalizer.java62 * @param operation operation invoked
68 NormalizedMessage normalizedMessage, Operation operation, boolean isResponse);
67 denormalizeMessage( NormalizedMessage normalizedMessage, Operation operation, boolean isResponse) argument
H A DMessageDenormalizerImpl.java153 * @param operation operation invoked
159 NormalizedMessage normalizedMessage, Operation operation, boolean isResponse)
180 writeBody(normalizedMessage, operation, isResponse, writer);
305 * @param operation operation invoked
312 NormalizedMessage normalizedMessage, Operation operation, boolean isResponse,
321 writeBodyHeader(operation, writer, isEmptyResponse);
329 writeBodyFooter(operation, writer, isEmptyResponse);
389 * @param operation operatio
158 denormalizeMessage( NormalizedMessage normalizedMessage, Operation operation, boolean isResponse) argument
311 writeBody( NormalizedMessage normalizedMessage, Operation operation, boolean isResponse, Writer writer) argument
395 writeBodyHeader( Operation operation, Writer writer, boolean isEmptyResponse) argument
423 writeBodyFooter( Operation operation, Writer writer, boolean isEmptyResponse) argument
[all...]
H A DMessageExchangeHelper.java147 Operation operation = new Operation(operationQName.getLocalPart(), pattern);
157 wrapper = d.denormalizeMessage(normalizedMsg, operation, !inFlag);
189 //normalizer.normalizeMessage(wrapper, normalizedMsg, operation);
290 Operation operation = null;
299 operation = getOperation(soapMessage,
303 operation = new Operation(operationName,
309 normalizer.normalizeMessage(wrapper, normalizedMsg, operation);
459 // Get operation name from the localpart of the first child
468 // Get WSDL operation QName. This is in the same namespace as the
481 Operation operation
[all...]
H A DMessageNormalizerImpl.java120 * @param operation operation requested.
126 Operation operation)
135 normalizeResponseMessage( soapWrapper, normalizedMessage, operation);
228 * @param operation operation details.
234 Operation operation)
255 /* extractPayload(soapBody, operation,
454 * @param operation operation requeste
124 normalizeMessage( SOAPWrapper soapWrapper, NormalizedMessage normalizedMessage, Operation operation) argument
232 normalizeResponseMessage( SOAPWrapper soapWrapper, NormalizedMessage normalizedMessage, Operation operation) argument
461 extractPayload(SOAPBody soapBody, Operation operation, boolean isFault) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DRegistryMBean.java100 /** Invoke an operation on a set of mbeans.
103 * @param operation Operation to perform. Typically "init" "start" "stop" or "destroy"
108 public void invoke( List<ObjectName> mbeans, String operation, boolean failFirst ) argument
H A DManagedBean.java316 * Add a new operation to the set of operations for this MBean.
318 * @param operation The new operation descriptor
320 public void addOperation(OperationInfo operation) { argument
325 results[operations.length] = operation;
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DRetrieveDesc.java90 * @param opCode The operation code.
98 * <code>name</code>. The valid values for <code>operation
117 public void addConstraint(String name, int operation, Object value); argument
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/transport/
H A DNMRClientConnection.java74 private QName operation; field in class:NMRClientConnection
84 QName operation,
89 this.operation = operation;
113 me.setOperation(operation);
81 NMRClientConnection(URL wsdlLocation, QName service, String endpointName, QName operation, boolean oneWay) argument
H A DJBITransportPipe.java97 QName operation = request.getMessage().getOperation(wsdlPort).getName();
100 new NMRClientConnection(wsdlLocation, service, endpointName, operation, isOneWay);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/
H A DRetrieveDescImpl.java240 * @param opCode The operation code.
331 public void addConstraint(String name, int operation, argument
335 constraint.addOperation(operation);
341 * addConstraint pushes the value, name, and operation onto the
349 * @param operation
350 * The operation parameter specifies the relationship the field
351 * should bear to the value. Values for operation are defined in
356 * hold a parameter count as for the OP_IN operation.
359 int operation,
361 int info = getOperationInfo(operation);
358 addConstraint(String name, int operation, Object value) argument
510 getOperationInfo(int operation) argument
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/
H A DStatement.java175 int operation;
177 operation = ActionDesc.OP_NULL;
185 operation = ActionDesc.OP_MAYBE_NULL;
189 operation = ActionDesc.OP_EQ;
193 constraint.addOperation(operation);
266 int op = opNode.operation;
459 int opCode = opNode.operation;
699 // Resolve: Why should CONCAT operation be inside braces.
700 // Opening brace around CONCAT operation
705 // Closing brace around CONCAT operation
925 infixOperator(int operation, int position) argument
1002 operationFormat(int operation) argument
1104 postfixOperator(int operation) argument
1135 prefixOperator(int operation) argument
[all...]
H A DSelectQueryPlan.java752 * @param operation {@link ActionDesc#OP_NOTEXISTS}
755 private void addCorrelatedExistsQuery(ForeignFieldDesc ff, int operation) { argument
767 subqueryConstraint.operation = operation;
899 ((((ConstraintOperation) nextNode).operation == ActionDesc.OP_NULL) ||
900 (((ConstraintOperation) nextNode).operation == ActionDesc.OP_NOTNULL))) {
924 * @param nextNode Constraint operation, either for null or non-null comparison.
940 if (((ConstraintOperation) nextNode).operation == ActionDesc.OP_NOTNULL) {
1038 * the plans with the join operation <code>joinOp</code>.
1041 * @param joinOp Join operation
[all...]
H A DSelectStatement.java267 // information. Oracle's special DB operation code gets confused otherwise.
447 int op = opNode.operation;
512 int opCode = jnode.operation;
536 * @param opCode Join operation.
571 * @param opCode Join operation.
642 * @param joinOp Join operation.
661 * Returns join operator for specified operation.
663 * @param operation The join operation. Should be one of
665 * @return join operator for specified operation
667 getJoinOperator(int operation) argument
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/antlr/
H A DCodeGeneration.g224 * Check the attached RetrieveDesc of the specified binary operation and its operands.
480 * Returns the boolean operation of the equivalent relational expression
484 protected int getSwappedOp(int operation)
487 switch (operation)
518 int operation, Object value)
522 rd.addConstraint(name, operation, value);
524 else if (operation == RetrieveDesc.OP_EQ)
528 else if (operation == RetrieveDesc.OP_NE)
548 int operation, Object value, Type valueType)
550 int booleanOp = getKeyFieldsComparisonBooleanOp(operation);
[all...]
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DGlassFishORBFactoryImpl.java133 (!gfORBManager.isIsACall(sri.operation())));
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DCoordinatorImpl.java111 /**OMG Coordinator operation required of all subclasses.
115 /**OMG Coordinator operation required of all subclasses.
119 /**OMG Coordinator operation required of all subclasses.
123 /**OMG Coordinator operation required of all subclasses.
127 /**OMG Coordinator operation required of all subclasses.
131 /**OMG Coordinator operation required of all subclasses.
135 /**OMG Coordinator operation required of all subclasses.
139 /**OMG Coordinator operation required of all subclasses.
143 /**OMG Coordinator operation required of all subclasses.
147 /**OMG Coordinator operation require
447 _request(String operation) argument
451 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
458 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
[all...]
H A DTerminatorImpl.java219 * This operation is part of the OMG interface and must not return
232 * @exception SystemException The operation failed.
280 * No heuristics are reported by this operation so if the root Coordinator
281 * raises a heuristic exception, it is cleared before the operation
284 * This operation is part of the OMG interface and must not return
291 * @exception SystemException The operation failed.
420 public Request _request(String operation) { argument
425 String operation,
432 String operation,
424 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
431 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
H A DControlImpl.java379 /**Stacks the given ControlImpl on the target of the operation, so that it can
382 * If there is already a stacked ControlImpl object, the operation throws an
425 * This operation is part of the OMG interface and must not return any
433 * @exception SystemException The operation failed.
510 * This operation is part of the OMG interface and must not return
518 * @exception SystemException The operation failed.
564 * This operation is part of the OMG interface and must not return
572 * @exception SystemException The operation failed.
606 /**This operation returns a value indicating that asynchonrous requests issued
623 /**This operation return
996 _request(String operation) argument
1001 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
1009 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
[all...]
H A DTransactionFactoryImpl.java183 // with the given time-out value. If the operation fails,
197 // subtransaction. If the operation fails,
203 // Coordinator and global OMGtid. If the operation fails,
678 public Request _request(String operation) { argument
683 String operation,
690 String operation,
682 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
689 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/
H A DSynchronizationImpl.java228 public Request _request(String operation) { argument
233 String operation,
240 String operation,
232 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
239 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/modules/
H A DMbeansSource.java269 } else if("jmx-operation".equals(nodeName) ) {
274 String operation=DomUtil.getAttribute(mbeanN, "operation");
278 " code=" + operation);
283 server.invoke( oname, operation, null, null);
285 log.log(Level.SEVERE, "Error in invoke " + name + " " + operation);
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/jmac/provider/
H A DBaseAuthConfig.java351 // should be keyed by operation-name.
460 // this is what .net uses to identify the operation
501 private Object getContextForOpName(String operation) { argument
533 // set to null if different policies on operation
540 // set to null if operation policy differs from superPolicy
552 if (operation != null) {
553 if (contextsForOpNames_.containsKey(operation)) {
554 Integer k = (Integer) contextsForOpNames_.get(operation);
570 logger.fine("WSS: ForOpName=" + operation + " context: " + rvalue);
578 // element defined with the corresponding operation nam
[all...]

Completed in 76 milliseconds

12