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

com.jeesuite.cos.UploadResultParam Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 com.jeesuite.cos;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

/**
 * @description 
* @author vakin * @date 2018年4月3日 */ @JsonInclude(Include.NON_NULL) public class UploadResultParam { /** * 业务应用id */ private String appId; private String bucketName; /** * 文件名称 */ private String fileName; /** * 上传文件名称 */ private String fileKey; /** * 媒体类型 */ private String mimeType; private boolean auth; private long fileSize; private String fileHash; /** * @return the appId */ public String getAppId() { return appId; } /** * @param appId the appId to set */ public void setAppId(String appId) { this.appId = appId; } public String getBucketName() { return bucketName; } public void setBucketName(String bucketName) { this.bucketName = bucketName; } /** * @return the fileName */ public String getFileName() { return fileName; } /** * @param fileName the fileName to set */ public void setFileName(String fileName) { this.fileName = fileName; } /** * @return the fileKey */ public String getFileKey() { return fileKey; } /** * @param fileKey the fileKey to set */ public void setFileKey(String fileKey) { this.fileKey = fileKey; } /** * @return the mimeType */ public String getMimeType() { return mimeType; } /** * @param mimeType the mimeType to set */ public void setMimeType(String mimeType) { this.mimeType = mimeType; } public boolean isAuth() { return auth; } public void setAuth(boolean auth) { this.auth = auth; } public long getFileSize() { return fileSize; } public void setFileSize(long fileSize) { this.fileSize = fileSize; } public String getFileHash() { return fileHash; } public void setFileHash(String fileHash) { this.fileHash = fileHash; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy