View Javadoc
1   package org.codehaus.mojo.webstart;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.util.List;
23  
24  /**
25   * Bean to host a jnlp extension configuration.
26   *
27   * @author <a href="chemit@codelutin.com">tony Chemit</a>
28   * @version $Id$
29   */
30  public class JnlpExtension
31      extends JnlpConfig
32  {
33  
34      private List<String> includes;
35  
36      private String name;
37  
38      private String title;
39  
40      private String vendor;
41  
42      private String homepage;
43  
44      private String description;
45  
46      public void setDescription( String description )
47      {
48          this.description = description;
49      }
50  
51      public void setHomepage( String homepage )
52      {
53          this.homepage = homepage;
54      }
55  
56      public void setIncludes( List<String> includes )
57      {
58          this.includes = includes;
59      }
60  
61      public void setTitle( String title )
62      {
63          this.title = title;
64      }
65  
66      public void setVendor( String vendor )
67      {
68          this.vendor = vendor;
69      }
70  
71      public void setName( String name )
72      {
73          this.name = name;
74      }
75  
76      public String getDescription()
77      {
78          return description;
79      }
80  
81      public String getHomepage()
82      {
83          return homepage;
84      }
85  
86      public List<String> getIncludes()
87      {
88          return includes;
89      }
90  
91      public String getTitle()
92      {
93          return title;
94      }
95  
96      public String getVendor()
97      {
98          return vendor;
99      }
100 
101     public String getName()
102     {
103         return name;
104     }
105 
106 }