io.proximax.xpx.facade.multisigupload.MultisigUploadFileParameter 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.
*/
package io.proximax.xpx.facade.multisigupload;
import io.proximax.xpx.builder.steps.FileStep;
import io.proximax.xpx.builder.steps.MultisigPublicKeyStep;
import io.proximax.xpx.builder.steps.ReceiverPublicKeyStep;
import io.proximax.xpx.builder.steps.SenderPrivateKeyStep;
import io.proximax.xpx.facade.upload.UploadFileParameter;
import io.proximax.xpx.utils.ContentTypeUtils;
import io.proximax.xpx.utils.StringUtils;
import org.apache.commons.io.FileUtils;
import java.io.IOException;
import java.io.Serializable;
/**
* The Class MultisigUploadFileParameter.
*/
public class MultisigUploadFileParameter extends UploadFileParameter implements Serializable {
/** The multisig public key. */
private String multisigPublicKey;
/**
* Gets the multisig public key.
*
* @return the multisig public key
*/
public String getMultisigPublicKey() {
return multisigPublicKey;
}
/**
* Sets the multisig public key.
*
* @param multisigPublicKey the new multisig public key
*/
public void setMultisigPublicKey(String multisigPublicKey) {
this.multisigPublicKey = multisigPublicKey;
}
/**
* Creates the multisig param.
*
* @return the multisig public key step
*/
public static MultisigPublicKeyStep>>> createMultisigParam() {
return new Builder();
}
/**
* The Class Builder.
*/
private static class Builder extends UploadFileParameter.Builder
implements MultisigPublicKeyStep {
/** The instance. */
MultisigUploadFileParameter instance;
/**
* Instantiates a new builder.
*/
private Builder() {
super(new MultisigUploadFileParameter());
this.instance = (MultisigUploadFileParameter) super.instance;
}
/* (non-Javadoc)
* @see io.proximax.xpx.builder.steps.MultisigPublicKeyStep#multisigPublicKeyStep(java.lang.String)
*/
@Override
public SenderPrivateKeyStep multisigPublicKeyStep(String multisigPublicKeyStep) {
this.instance.setMultisigPublicKey(multisigPublicKeyStep);
return this;
}
/* (non-Javadoc)
* @see io.proximax.xpx.facade.upload.UploadFileParameter.Builder#build()
*/
@Override
public MultisigUploadFileParameter build() throws IOException {
if (StringUtils.isEmpty(this.instance.getName()))
this.instance.setName(this.instance.getFile().getName());
if (StringUtils.isEmpty(this.instance.getContentType()))
this.instance.setContentType(ContentTypeUtils.detectContentType(FileUtils.readFileToByteArray(this.instance.getFile())));
return instance;
}
}
}