001package co.codewizards.cloudstore.core.dto;
002
003import javax.xml.bind.annotation.XmlRootElement;
004
005@SuppressWarnings("serial")
006@XmlRootElement
007public class SymlinkDto extends RepoFileDto {
008
009        private String target;
010
011        public SymlinkDto() { }
012
013        public String getTarget() {
014                return target;
015        }
016        public void setTarget(final String target) {
017                this.target = target;
018        }
019
020        @Override
021        protected String toString_getProperties() {
022                return super.toString_getProperties()
023                                + ", target=" + target;
024        }
025}