1 package org.kuali.maven.mojo.s3;
2
3 public class UpdateDirectoryContext {
4 S3PrefixContext context;
5 boolean isCopyIfExists;
6 String copyToKey;
7
8 public S3PrefixContext getContext() {
9 return context;
10 }
11
12 public void setContext(S3PrefixContext context) {
13 this.context = context;
14 }
15
16 public boolean isCopyIfExists() {
17 return isCopyIfExists;
18 }
19
20 public void setCopyIfExists(boolean isCopyIfExists) {
21 this.isCopyIfExists = isCopyIfExists;
22 }
23
24 public String getCopyToKey() {
25 return copyToKey;
26 }
27
28 public void setCopyToKey(String copyToKey) {
29 this.copyToKey = copyToKey;
30 }
31
32 }