Package com.adito.vfs.webdav

Examples of com.adito.vfs.webdav.DAVMultiStatus$Response


                resource.delete();
                transaction.setStatus(204);
                resource.getMount().resourceDelete(resource, transaction, null);
            } catch (FileSystemException ex) {
                transaction.setStatus(423);
                DAVMultiStatus s = new DAVMultiStatus();
                throw s;
            }
        } catch (DAVMultiStatus multistatus) {
            multistatus.write(transaction);
            resource.getMount().resourceDelete(resource, transaction, multistatus);
View Full Code Here


      throw new DAVException(403, "Can't delete resource '" + getRelativePath()
        + "' as it is the root for the mount point "
        + this.getMount().getMountString(), this);
    } else if (this.isCollection()) {

      DAVMultiStatus multistatus = new DAVMultiStatus();

      Iterator children = this.getChildren();
      while (children.hasNext())
        try {
          ((VFSResource) children.next()).delete();
        } catch (DAVException exception) {
          multistatus.merge(exception);
        }

      if (multistatus.size() > 0)
        throw multistatus;
      try {
        if (!getFile().delete()) {
          throw new DAVException(403, "Can't delete collection", this);
        } else {
View Full Code Here

    if (this.isCollection()) {
      dest.makeCollection();
      if (!recursive)
        return;

      DAVMultiStatus multistatus = new DAVMultiStatus();
      Iterator children = this.getChildren();
      while (children.hasNext())
        try {
          FileObjectVFSResource childResource = (FileObjectVFSResource) children.next();
          try {
            FileObject child = ((FileObjectVFSResource) dest).getFile().resolveFile(childResource.getFile()
                    .getName()
                    .getBaseName());
            FileObjectVFSResource target = new FileObjectVFSResource(getLaunchSession(),
                    this.getMount(),
                    this, /* transaction, */
                    this.getMount().getMountString(),
                    repository,
                    requestCredentials);
            childResource.copy(target, overwrite, recursive);
          } catch (IOException e) {
            throw new DAVException(403, "Could not resolve child.", e);
          }
        } catch (DAVException exception) {
          multistatus.merge(exception);
        }
      if (multistatus.size() > 0)
        throw multistatus;
    }
  }
View Full Code Here

  public void deleteAttachment(ERS3Attachment attachment)
      throws MalformedURLException, IOException {
    AWSAuthConnection conn = attachment.awsConnection();
    String bucket = attachment.bucket();
    String key = attachment.key();
    Response response = conn.delete(bucket, key, null);
    if (failed(response)) {
      throw new IOException("Failed to delete '" + bucket + "/" + key
          + "' to S3: Error " + response.connection.getResponseCode()
          + ": " + response.connection.getResponseMessage());
    }
View Full Code Here

          headers.put("Content-Disposition", Arrays
              .asList(new String[] { "attachment; filename="
                  + originalFileName }));
        }

        Response response = conn.putStream(bucket, key,
            attachmentStreamObject, headers);
        if (failed(response)) {
          throw new IOException("Failed to write '" + bucket + "/"
              + key + "' to S3: Error "
              + response.connection.getResponseCode() + ": "
View Full Code Here

    try {
      send_raw(q.build().toByteArray());
    } catch (IOException ex) {
      throw new RqlDriverException(ex.getMessage());
    }
    Response rsp = get();

    // For this version we only support success :-(
    switch(rsp.getType()) {
    case SUCCESS_ATOM:
    case SUCCESS_SEQUENCE:
    case SUCCESS_PARTIAL:
      return new RqlCursor(this,rsp);
    case CLIENT_ERROR:
    case COMPILE_ERROR:
    case RUNTIME_ERROR:
    default:
      throw new RqlDriverException(rsp.toString());             
    }             
  }
View Full Code Here

        ExecuteMethod executeMethod = new ExecuteMethod();
        executeMethod.setParameters(parameters);
        executeMethod.setUrl(path);
        executeMethod.setHttpMethod(methodName);

        Response response = method.getResponse();
        if (response != null) {
            Representation representation = response.getRepresentation();
            if (representation != null) {
                String mediaType = representation.getMediaType();
                executeMethod.setResponseType(mediaType);
            }
        }
View Full Code Here

    // verify correctness
    Assert.assertEquals("server content length unequal", contents.length, req.getContent().length);
    Assert.assertTrue("server contents do not match", Arrays.equals(contents, req.getContent()));

    // echo message back to client
    final Response rsp = new Response();
    rsp.setPayload(contents);
    Assert.assertTrue(Arrays.equals(contents, rsp.getPayload()));
    handler.sendResponse(rsp, req);

    // read out message at client
    final byte[] msg1 = readInputStream(in, true);
    Assert.assertTrue("zero-length message", msg1.length > 0);
View Full Code Here

    // verify correctness
    Assert.assertEquals("server content length unequal", contents.length, req.getContent().length);
    Assert.assertTrue("server contents do not match", Arrays.equals(contents, req.getContent()));

    // echo message back to client
    final Response rsp = new Response();
    rsp.setPayload(contents);
    Assert.assertTrue(Arrays.equals(contents, rsp.getPayload()));
    handler.sendResponse(rsp, req);
    // handler.sendResponse(rsp, req);

    // read out message at client
    final byte[] msg1 = readInputStream(in, true);
View Full Code Here

   {
      log.debug("Starting");
      try
      {
         this.connection = config.getConnection();
         Response create = connection.create(getBucket(), config.getLocation());
         if (!create.isOk())
            throw new S3Exception("Unable to create bucket: " + create);
         log.info("S3 accessed successfully. Bucket created: " + create);
      }
      catch (Exception e)
      {
View Full Code Here

TOP

Related Classes of com.adito.vfs.webdav.DAVMultiStatus$Response

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.