001package co.codewizards.cloudstore.core.dto;
002
003import javax.xml.bind.annotation.XmlRootElement;
004
005@XmlRootElement
006public class TempChunkFileDto {
007        private FileChunkDto fileChunkDto;
008
009        public FileChunkDto getFileChunkDto() {
010                return fileChunkDto;
011        }
012        public void setFileChunkDto(FileChunkDto fileChunkDto) {
013                this.fileChunkDto = fileChunkDto;
014        }
015
016        @Override
017        public String toString() {
018                return getClass().getSimpleName() + '[' + toString_getProperties() + ']';
019        }
020
021        protected String toString_getProperties() {
022                return "fileChunkDto=" + fileChunkDto;
023        }
024}