001package co.codewizards.cloudstore.ls.core.dto; 002 003import java.util.Date; 004import java.util.UUID; 005 006public class RemoteRepositoryRequestDto { 007 008 private UUID repositoryId; 009 private byte[] publicKey; 010 private Date created; 011 private Date changed; 012 013 public UUID getRepositoryId() { 014 return repositoryId; 015 } 016 017 public void setRepositoryId(UUID repositoryId) { 018 this.repositoryId = repositoryId; 019 } 020 021 public byte[] getPublicKey() { 022 return publicKey; 023 } 024 025 public void setPublicKey(byte[] publicKey) { 026 this.publicKey = publicKey; 027 } 028 029 public Date getCreated() { 030 return created; 031 } 032 033 public void setCreated(Date created) { 034 this.created = created; 035 } 036 037 public Date getChanged() { 038 return changed; 039 } 040 041 public void setChanged(Date changed) { 042 this.changed = changed; 043 } 044}