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 DependencyFilesetsConfiguration.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class DependencyFilesetsConfiguration
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * String to prepend to all fileset IDs.
24       */
25      private String prefix;
26  
27      /**
28       * RefId for the fileset containing all project dependencies.
29       */
30      private String projectDependenciesId = "maven.project.dependencies";
31  
32      /**
33       * Comma separated list of artifact scopes to include.
34       */
35      private String scopes;
36  
37      /**
38       * Comma separated list of artifact types to include.
39       */
40      private String types;
41  
42      /**
43       * Field modelEncoding.
44       */
45      private String modelEncoding = "UTF-8";
46  
47  
48        //-----------/
49       //- Methods -/
50      //-----------/
51  
52      /**
53       * Get the modelEncoding field.
54       * 
55       * @return String
56       */
57      public String getModelEncoding()
58      {
59          return this.modelEncoding;
60      } //-- String getModelEncoding()
61  
62      /**
63       * Get string to prepend to all fileset IDs.
64       * 
65       * @return String
66       */
67      public String getPrefix()
68      {
69          return this.prefix;
70      } //-- String getPrefix()
71  
72      /**
73       * Get refId for the fileset containing all project
74       * dependencies.
75       * 
76       * @return String
77       */
78      public String getProjectDependenciesId()
79      {
80          return this.projectDependenciesId;
81      } //-- String getProjectDependenciesId()
82  
83      /**
84       * Get comma separated list of artifact scopes to include.
85       * 
86       * @return String
87       */
88      public String getScopes()
89      {
90          return this.scopes;
91      } //-- String getScopes()
92  
93      /**
94       * Get comma separated list of artifact types to include.
95       * 
96       * @return String
97       */
98      public String getTypes()
99      {
100         return this.types;
101     } //-- String getTypes()
102 
103     /**
104      * Set the modelEncoding field.
105      * 
106      * @param modelEncoding
107      */
108     public void setModelEncoding( String modelEncoding )
109     {
110         this.modelEncoding = modelEncoding;
111     } //-- void setModelEncoding( String )
112 
113     /**
114      * Set string to prepend to all fileset IDs.
115      * 
116      * @param prefix
117      */
118     public void setPrefix( String prefix )
119     {
120         this.prefix = prefix;
121     } //-- void setPrefix( String )
122 
123     /**
124      * Set refId for the fileset containing all project
125      * dependencies.
126      * 
127      * @param projectDependenciesId
128      */
129     public void setProjectDependenciesId( String projectDependenciesId )
130     {
131         this.projectDependenciesId = projectDependenciesId;
132     } //-- void setProjectDependenciesId( String )
133 
134     /**
135      * Set comma separated list of artifact scopes to include.
136      * 
137      * @param scopes
138      */
139     public void setScopes( String scopes )
140     {
141         this.scopes = scopes;
142     } //-- void setScopes( String )
143 
144     /**
145      * Set comma separated list of artifact types to include.
146      * 
147      * @param types
148      */
149     public void setTypes( String types )
150     {
151         this.types = types;
152     } //-- void setTypes( String )
153 
154 }