Package org.openrdf.http.protocol.transaction.operations

Examples of org.openrdf.http.protocol.transaction.operations.RemoveStatementsOperation


      Value object = parsedValues.get(2);
      Resource[] contexts = createContexts(3);

      parsedValues.clear();

      return new RemoveStatementsOperation(subject, predicate, object, contexts);
    }
    catch (ClassCastException e) {
      throw new SAXException("Invalid argument(s) for RemoveStatementsOperation", e);
    }
  }
View Full Code Here


    if (repository.isReadOnly()) {
      throw new RepositoryReadOnlyException();
    }
    if (!noMatch(subject, predicate, object, true, contexts)) {
      add(new RemoveStatementsOperation(subject, predicate, object, contexts));
    }
  }
View Full Code Here

      Value object = parsedValues.get(2);
      Resource[] contexts = createContexts(3);

      parsedValues.clear();

      return new RemoveStatementsOperation(subject, predicate, object, contexts);
    }
    catch (ClassCastException e) {
      throw new SAXException("Invalid argument(s) for RemoveStatementsOperation", e);
    }
  }
View Full Code Here

  @Override
  protected void removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
    throws RepositoryException
  {
    txn.add(new RemoveStatementsOperation(subject, predicate, object, contexts));
  }
View Full Code Here

TOP

Related Classes of org.openrdf.http.protocol.transaction.operations.RemoveStatementsOperation

Copyright © 2018 www.massapicom. 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.