View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.11,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.plugins.antrun.taskconfig;
7   
8   /**
9    * Class AttachArtifactConfiguration.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class AttachArtifactConfiguration
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * The file to attach to the project.
24       */
25      private String _file_placeholder;
26  
27      /**
28       * A classifier assigned to the artifact.
29       */
30      private String classifier;
31  
32      /**
33       * The type of the artifact, zip, war, etc.
34       */
35      private String type;
36  
37      /**
38       * Field modelEncoding.
39       */
40      private String modelEncoding = "UTF-8";
41  
42  
43        //-----------/
44       //- Methods -/
45      //-----------/
46  
47      /**
48       * Get a classifier assigned to the artifact.
49       * 
50       * @return String
51       */
52      public String getClassifier()
53      {
54          return this.classifier;
55      } //-- String getClassifier()
56  
57      /**
58       * Get the modelEncoding field.
59       * 
60       * @return String
61       */
62      public String getModelEncoding()
63      {
64          return this.modelEncoding;
65      } //-- String getModelEncoding()
66  
67      /**
68       * Get the type of the artifact, zip, war, etc.
69       * 
70       * @return String
71       */
72      public String getType()
73      {
74          return this.type;
75      } //-- String getType()
76  
77      /**
78       * Set a classifier assigned to the artifact.
79       * 
80       * @param classifier
81       */
82      public void setClassifier( String classifier )
83      {
84          this.classifier = classifier;
85      } //-- void setClassifier( String )
86  
87      /**
88       * Set the modelEncoding field.
89       * 
90       * @param modelEncoding
91       */
92      public void setModelEncoding( String modelEncoding )
93      {
94          this.modelEncoding = modelEncoding;
95      } //-- void setModelEncoding( String )
96  
97      /**
98       * Set the type of the artifact, zip, war, etc.
99       * 
100      * @param type
101      */
102     public void setType( String type )
103     {
104         this.type = type;
105     } //-- void setType( String )
106 
107     
108         private java.io.File file;
109         
110         public java.io.File getFile()
111         {
112           return this.file;
113         }
114         
115         public void setFile( java.io.File file )
116         {
117           this.file = file;        
118         }
119         
120 }