io.proximax.xpx.service.intf.UploadApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpx-java-sdk Show documentation
Show all versions of xpx-java-sdk Show documentation
Proximax P2P File Storage Java SDK (NIS1 Compatible)
/*
* Copyright 2018 ProximaX Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Proximax P2P Storage REST API
* Proximax P2P Storage REST API
*
* OpenAPI spec version: v0.0.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.proximax.xpx.service.intf;
import io.proximax.xpx.exceptions.ApiException;
import java.io.IOException;
import java.security.NoSuchAlgorithmException;
/**
* The Interface UploadApi.
*/
public interface UploadApi {
/**
* Cleanup pinned content using POST.
*
* @param multihash the multihash
* @return the string
* @throws ApiException the api exception
* @throws IOException Signals that an I/O exception has occurred.
*/
String deletePinnedContent(String multihash) throws ApiException, IOException;
/**
* Upload bytes binary.
*
* @param binaryData the binary data
* @param name the name
* @param contentType the content type
* @param keywords the keywords
* @param metadata the metadata
* @return the byte[]
* @throws ApiException the api exception
* @throws IOException Signals that an I/O exception has occurred.
* @throws NoSuchAlgorithmException the no such algorithm exception
*/
byte[] uploadBytesBinary(byte[] binaryData, String name, String contentType, String keywords, String metadata)
throws ApiException, IOException, NoSuchAlgorithmException;
/**
* Upload text.
*
* @param textInBytes the text in bytes
* @param name the name
* @param contentType the content type
* @param encoding the encoding
* @param keywords the keywords
* @param metadata the metadata
* @return the byte[]
* @throws ApiException the api exception
* @throws IOException Signals that an I/O exception has occurred.
* @throws NoSuchAlgorithmException the no such algorithm exception
*/
byte[] uploadText(byte[] textInBytes, String name, String contentType, String encoding, String keywords, String metadata)
throws ApiException, IOException, NoSuchAlgorithmException;
/**
* Upload path.
*
* @param path the path
* @param name the name
* @param keywords the keywords
* @param metadata the metadata
* @return the byte[]
* @throws ApiException the api exception
* @throws IOException Signals that an I/O exception has occurred.
* @throws NoSuchAlgorithmException the no such algorithm exception
*/
byte[] uploadPath(String path, String name, String keywords, String metadata)
throws ApiException, IOException, NoSuchAlgorithmException;
}