View Javadoc
1   package io.apicurio.registry.maven;
2   
3   import java.io.File;
4   
5   public class TestArtifact {
6   
7       private String groupId;
8       private String artifactId;
9       private String contentType;
10      private File file;
11  
12      /**
13       * Constructor.
14       */
15      public TestArtifact() {
16      }
17  
18      /**
19       * @return the groupId
20       */
21      public String getGroupId() {
22          return groupId;
23      }
24  
25      /**
26       * @param groupId the groupId to set
27       */
28      public void setGroupId(String groupId) {
29          this.groupId = groupId;
30      }
31  
32      /**
33       * @return the artifactId
34       */
35      public String getArtifactId() {
36          return artifactId;
37      }
38  
39      /**
40       * @param artifactId the artifactId to set
41       */
42      public void setArtifactId(String artifactId) {
43          this.artifactId = artifactId;
44      }
45  
46      /**
47       * @return the file
48       */
49      public File getFile() {
50          return file;
51      }
52  
53      /**
54       * @param file the file to set
55       */
56      public void setFile(File file) {
57          this.file = file;
58      }
59  
60      /**
61       * @return the content type
62       */
63      public String getContentType() {
64          return contentType;
65      }
66  
67      /**
68       * @param contentType the contentType to set
69       */
70      public void setContentType(String contentType) {
71          this.contentType = contentType;
72      }
73  
74  }