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

com.aspectran.demo.examples.upload.UploadedFile Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2008-2025 The Aspectran Project
 *
 * 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 com.aspectran.demo.examples.upload;

import com.aspectran.utils.ToStringBuilder;
import com.aspectran.utils.annotation.NonSerializable;
import com.aspectran.utils.json.JsonBuilder;

import java.util.UUID;

/**
 * 

Created: 2018. 7. 9.

*/ public class UploadedFile { private String key; private String fileName; private long fileSize; private String humanFileSize; private String fileType; private String url; private byte[] bytes; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public long getFileSize() { return fileSize; } public void setFileSize(long fileSize) { this.fileSize = fileSize; } public String getHumanFileSize() { return humanFileSize; } public void setHumanFileSize(String humanFileSize) { this.humanFileSize = humanFileSize; } public String getFileType() { return fileType; } public void setFileType(String fileType) { this.fileType = fileType; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } @NonSerializable public byte[] getBytes() { return bytes; } public void setBytes(byte[] bytes) { this.bytes = bytes; } @Override public String toString() { ToStringBuilder tsb = new ToStringBuilder(); tsb.append("key", key); tsb.append("fileName", fileName); tsb.append("fileSize", fileSize); tsb.append("humanFileSize", humanFileSize); tsb.append("fileType", fileType); tsb.append("url", url); return tsb.toString(); } public static void main(String[] args) { UploadedFile uploadedFile = new UploadedFile(); uploadedFile.setKey(UUID.randomUUID().toString()); uploadedFile.setFileName("test11"); uploadedFile.setFileSize(11); uploadedFile.setFileType("jpg"); System.out.println(new JsonBuilder().nullWritable(false).put(uploadedFile)); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy