001package co.codewizards.cloudstore.core.dto; 002 003import javax.xml.bind.annotation.XmlRootElement; 004 005@XmlRootElement 006public class DeleteModificationDto extends ModificationDto { 007 008 private String path; 009 010 public String getPath() { 011 return path; 012 } 013 public void setPath(String path) { 014 this.path = path; 015 } 016 017 @Override 018 public String toString() { 019 return getClass().getSimpleName() + '[' + toString_getProperties() + ']'; 020 } 021 022 protected String toString_getProperties() { 023 return "id=" + getId() 024 + ", localRevision=" + getLocalRevision() 025 + ", path=" + path; 026 } 027}