io.proximax.xpx.facade.multisigupload.MultisigUploadBinaryParameter 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.*;
import io.proximax.xpx.facade.upload.UploadBinaryParameter;
import io.proximax.xpx.utils.ContentTypeUtils;
import io.proximax.xpx.utils.StringUtils;
import java.io.Serializable;
/**
* The Class MultisigUploadBinaryParameter.
*/
public class MultisigUploadBinaryParameter extends UploadBinaryParameter 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 UploadBinaryParameter.Builder
implements MultisigPublicKeyStep {
/** The instance. */
MultisigUploadBinaryParameter instance;
/**
* Instantiates a new builder.
*/
private Builder() {
super(new MultisigUploadBinaryParameter());
this.instance = (MultisigUploadBinaryParameter) 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.UploadBinaryParameter.Builder#build()
*/
@Override
public MultisigUploadBinaryParameter build() {
if (StringUtils.isEmpty(this.instance.getContentType()))
this.instance.setContentType(ContentTypeUtils.detectContentType(this.instance.getData()));
return instance;
}
}
}