All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.backblaze.b2.client.structures.B2GetUploadPartUrlRequest Maven / Gradle / Ivy

Go to download

The core logic for B2 SDK for Java. Does not include any implementations of B2WebApiClient.

There is a newer version: 6.3.0
Show newest version
/*
 * Copyright 2017, Backblaze Inc. All Rights Reserved.
 * License https://www.backblaze.com/using_b2_code.html
 */
package com.backblaze.b2.client.structures;

import com.backblaze.b2.json.B2Json;

import java.util.Objects;

public class B2GetUploadPartUrlRequest {
    @B2Json.required
    private final String fileId;

    @B2Json.constructor(params = "fileId")
    private B2GetUploadPartUrlRequest(String fileId) {
        this.fileId = fileId;
    }

    public String getFileId() {
        return fileId;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        B2GetUploadPartUrlRequest that = (B2GetUploadPartUrlRequest) o;
        return Objects.equals(getFileId(), that.getFileId());
    }

    @Override
    public int hashCode() {
        return Objects.hash(getFileId());
    }

    public static Builder builder(String fileId) {
        return new Builder(fileId);
    }

    public static class Builder {
        private final String fileId;

        public Builder(String fileId) {
            this.fileId = fileId;
        }

        public B2GetUploadPartUrlRequest build() {
            return new B2GetUploadPartUrlRequest(fileId);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy