1 /*
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 =================== DO NOT EDIT THIS FILE ====================
19 Generated by Modello 2.5.1,
20 any modifications will be overwritten.
21 ==============================================================
22 */
23
24 package org.apache.maven.plugins.assembly.model;
25
26 /**
27 *
28 * Configures a filter for files headed into the assembly
29 * archive, to enable
30 * aggregation of various types of descriptor fragments,
31 * such as components.xml,
32 * web.xml, etc.
33 *
34 *
35 * @version $Revision$ $Date$
36 */
37 @SuppressWarnings( "all" )
38 public class ContainerDescriptorHandlerConfig
39 implements java.io.Serializable
40 {
41
42 //--------------------------/
43 //- Class/Member Variables -/
44 //--------------------------/
45
46 /**
47 *
48 * The handler's plexus role-hint, for lookup from
49 * the container.
50 *
51 */
52 private String handlerName;
53
54 /**
55 *
56 * Configuration options for the handler.
57 *
58 */
59 private Object configuration;
60
61
62 //-----------/
63 //- Methods -/
64 //-----------/
65
66 /**
67 * Get configuration options for the handler.
68 *
69 * @return Object
70 */
71 public Object getConfiguration()
72 {
73 return this.configuration;
74 } //-- Object getConfiguration()
75
76 /**
77 * Get the handler's plexus role-hint, for lookup from the
78 * container.
79 *
80 * @return String
81 */
82 public String getHandlerName()
83 {
84 return this.handlerName;
85 } //-- String getHandlerName()
86
87 /**
88 * Set configuration options for the handler.
89 *
90 * @param configuration a configuration object.
91 */
92 public void setConfiguration( Object configuration )
93 {
94 this.configuration = configuration;
95 } //-- void setConfiguration( Object )
96
97 /**
98 * Set the handler's plexus role-hint, for lookup from the
99 * container.
100 *
101 * @param handlerName a handlerName object.
102 */
103 public void setHandlerName( String handlerName )
104 {
105 this.handlerName = handlerName;
106 } //-- void setHandlerName( String )
107
108 }