001package co.codewizards.cloudstore.core.dto; 002 003import javax.xml.bind.annotation.XmlRootElement; 004 005@XmlRootElement 006public class CopyModificationDto extends ModificationDto { 007 008 private String fromPath; 009 010 private String toPath; 011 012 public String getFromPath() { 013 return fromPath; 014 } 015 public void setFromPath(String fromPath) { 016 this.fromPath = fromPath; 017 } 018 019 public String getToPath() { 020 return toPath; 021 } 022 public void setToPath(String toPath) { 023 this.toPath = toPath; 024 } 025 026 @Override 027 public String toString() { 028 return this.getClass().getSimpleName() + "[id=" + getId() 029 + ", localRevision=" + getLocalRevision() 030 + ", fromPath=" + fromPath 031 + ", toPath=" + toPath 032 + "]"; 033 } 034}