Examples of end()


Examples of org.activiti.engine.impl.pvm.delegate.ActivityExecution.end()

    // set the scope execution to the terminate end event and make it end here.
    // (the history should reflect that the execution ended here and we want an 'end time' for the
    // historic activity instance.)
    ((InterpretableExecution)scopeExecution).setActivity((ActivityImpl) terminateEndEventActivity);
    // end the scope execution
    scopeExecution.end();
  }
 
 
  // If we use this implementation, we run into trouble in the DbSqlSession, see ACT-1382
 
View Full Code Here

Examples of org.apache.abdera.protocol.server.Transactional.end()

          transaction.compensate(request,e);
        response = ProviderHelper.servererror(request, e);
        return response;
      } finally {
        if (transaction != null)
          transaction.end(request, response);
      }
  }
  
  protected abstract WorkspaceManager getWorkspaceManager(
    RequestContext request);
View Full Code Here

Examples of org.apache.bookkeeper.meta.LedgerManager.LedgerRange.end()

            while(ledgerRangeIterator.hasNext()) {
                LedgerRange lRange = ledgerRangeIterator.next();
                Map<Long, Boolean> subBkActiveLedgers = null;

                Long start = lastEnd + 1;
                Long end = lRange.end();
                if (!ledgerRangeIterator.hasNext()) {
                    end = Long.MAX_VALUE;
                }
                subBkActiveLedgers = bkActiveLedgersSnapshot.subMap(
                        start, true, end, true);
View Full Code Here

Examples of org.apache.camel.component.xmlsecurity.api.ValidationFailedHandler.end()

            }
            boolean goon = handler.ignoreCoreValidationFailure();
            LOG.debug("Ignore Core Validation failure: {}", goon);
            return goon;
        } finally {
            handler.end();
        }

    }

    protected Document parseInput(InputStream is, Message message) throws Exception { //NOPMD
View Full Code Here

Examples of org.apache.cassandra.db.composites.Composite.end()

        Mutation mutation = new Mutation(Keyspace.SYSTEM_KS, SystemKeyspace.getSchemaKSKey(ksName));
        ColumnFamily cf = mutation.addOrGet(SchemaColumnFamiliesCf);
        int ldt = (int) (System.currentTimeMillis() / 1000);

        Composite prefix = SchemaColumnFamiliesCf.comparator.make(cfName);
        cf.addAtom(new RangeTombstone(prefix, prefix.end(), timestamp, ldt));

        for (ColumnDefinition cd : allColumns())
            cd.deleteFromSchema(mutation, timestamp);

        for (TriggerDefinition td : triggers.values())
View Full Code Here

Examples of org.apache.cayenne.modeler.undo.RemoveCompoundUndoableEdit.end()

                CompoundEdit compoundEdit = new RemoveCompoundUndoableEdit();

                for (Object path : paths) {
                    compoundEdit.addEdit(removeLastPathComponent(path));
                }
                compoundEdit.end();

                application.getUndoManager().addEdit(compoundEdit);

            }
        }
View Full Code Here

Examples of org.apache.commons.betwixt.io.read.MappingAction.end()

        * This is delegated to the current <code>MappingAction</code>.
        */
        public void end(String namespace, String name) throws Exception {

            MappingAction action = context.popMappingAction();
            action.end(context);
        }

        /**
         * Tidy up.
         */
 
View Full Code Here

Examples of org.apache.commons.digester.Rule.end()

                try {
                    Rule rule = (Rule) rules.get(j);
                    if (debug) {
                        log.debug("  Fire end() for " + rule);
                    }
                    rule.end(namespaceURI, name);
                } catch (Exception e) {
                    throw digester.createSAXException(e);
                } catch (Error e) {
                    throw e;
                }
View Full Code Here

Examples of org.apache.commons.digester3.Rule.end()

                {
                    log.debug( "  Fire end() for " + rule );
                }
                try
                {
                    rule.end( namespaceURI, name );
                }
                catch ( Exception e )
                {
                    throw getDigester().createSAXException( e );
                }
View Full Code Here

Examples of org.apache.derby.iapi.sql.compile.ASTVisitor.end()

        ASTVisitor visitor = lcc.getASTVisitor();
        if ( visitor != null )
        {
            visitor.begin( statementText, phase );
            queryTree.accept( visitor );
            visitor.end( phase );
        }
    }

  /**
   * Generates an execution plan given a set of named parameters.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.