Examples of Delete


Examples of ca.uhn.fhir.rest.annotation.Delete

  public DeleteMethodBinding(Method theMethod, FhirContext theContext, Object theProvider) {
    super(theMethod, theContext, Delete.class,
        theProvider);

    Delete deleteAnnotation = theMethod.getAnnotation(Delete.class);
    Class<? extends IResource> resourceType = deleteAnnotation.type();
    if (resourceType != IResource.class) {
      RuntimeResourceDefinition def = theContext.getResourceDefinition(resourceType);
      myResourceName = def.getName();
    } else {
      if (theProvider != null && theProvider instanceof IResourceProvider) {
View Full Code Here

Examples of ch.uzh.ifi.seal.changedistiller.model.entities.Delete

     * @return the delete source code changes from the delete operation
     */
    public Delete createDeleteOperation(StructureEntityVersion structureEntity, DeleteOperation delete) {
        if (isUsableForChangeExtraction(delete.getNodeToDelete())) {
            SourceCodeEntity parent = delete.getParentNode().getEntity();
            return new Delete(structureEntity, delete.getNodeToDelete().getEntity(), parent);
        }
        return null;
    }
View Full Code Here

Examples of co.cask.cdap.api.dataset.table.Delete

    }

    // the swap is on the index column. it will only succeed if the current
    // value matches the expected value of the swap. if that value is not null,
    // then we must remove the row key from the index for that value.
    Delete idxDelete = null;
    if (expected != null) {
      idxDelete = new Delete(createIndexKey(row, column, expected), IDX_COL);
    }

    // if the new value is not null, then we must add the rowkey to the index
    // for that value.
    Put idxPut = null;
View Full Code Here

Examples of com.adito.vfs.webdav.methods.DELETE

    /**
     *
     */
    public void initialiseProcessor() {
        this.methods = new HashMap();
        this.methods.put("DELETE", new DELETE());
        this.methods.put("GET", new GET());
        this.methods.put("HEAD", new HEAD());
        this.methods.put("MKCOL", new MKCOL());
        this.methods.put("MOVE", new MOVE());
        this.methods.put("OPTIONS", new OPTIONS());
View Full Code Here

Examples of com.datastax.driver.core.querybuilder.Delete

                        where.and(eq(mapper.getPrimaryKeyColumn(i).getColumnName(), bindMarker()));
                    return select.toString();
                }
            case DEL:
                {
                    Delete delete = table == null
                                  ? delete().all().from(mapper.getKeyspace(), mapper.getTable())
                                  : delete().all().from(table);
                    Delete.Where where = delete.where();
                    for (int i = 0; i < mapper.primaryKeySize(); i++)
                        where.and(eq(mapper.getPrimaryKeyColumn(i).getColumnName(), bindMarker()));
                    return delete.toString();
                }
            case SLICE:
            case REVERSED_SLICE:
                {
                    Select select = table == null
View Full Code Here

Examples of com.founder.fix.bpmn2extensions.sqlmappingconfig.Delete

      }

      for (Object ele : document.getRootElement().elements("delete")) {
        Element element = (Element) ele;

        Delete deleteObj = SqlmappingconfigFactory.eINSTANCE.createDelete();
        deleteObj.setId(element.attributeValue("id"));
        deleteObj.setParameterType(element.attributeValue("parameterType"));
        deleteObj.setRemark(element.attributeValue("remark"));
        deleteObj.setSqlValue(element.getText());
       
        String classPathString=element.attributeValue("classPath");

        if(StringUtil.isNotEmpty(classPathString)){
          Class<?> classObj=ReflectUtil.loadClass(classPathString);
          if(classObj!=null){
            deleteObj.setClassPath(classPathString);
            ruleClassMap.put(element.attributeValue("id"), classObj);
          }
        }

        ruleMap.put(deleteObj.getId(), deleteObj);

      }

      for (Object ele : document.getRootElement().elements("update")) {
        Element element = (Element) ele;
View Full Code Here

Examples of com.google.code.gaeom.Delete

  }

  @Override
  public Delete delete(final Iterable<?> os)
  {
    return new Delete()
    {
      @Override
      public Void now()
      {
        return FutureUtils.safeGet(later());
View Full Code Here

Examples of com.oltpbenchmark.benchmarks.jpab.procedures.Delete

    public void updateTest() throws SQLException {
        Update proc=this.getProcedure(Update.class);
        proc.run(em, test);
    }
    public void deleteTest() throws SQLException {
        Delete proc=this.getProcedure(Delete.class);
        proc.run(em, test);
    }
View Full Code Here

Examples of com.spaceprogram.simplejpa.operations.Delete

        Future future = getExecutor().submit(new Save(this, o));
        return future;
    }

    public Future removeAsync(Object o) {
        Future future = getExecutor().submit(new Delete(this, o));
        return future;
    }
View Full Code Here

Examples of dk.brics.string.stringoperations.Delete

                }
                return callee;
            }
            // StringBuffer.delete(int,int)
            else if (methodName.equals("delete") && numArgs == 2) {
                UnaryOperation op = new Delete();
                factory.addStatement(new StringBufferUnaryOp(callee, op));
                return callee;
            }
            // StringBuffer.deleteCharAt(int)
            else if (methodName.equals("deleteCharAt") && numArgs == 1) {
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.