View Javadoc

1   package org.apache.maven.plugin.ear;
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 org.apache.maven.plugin.ear.output.FileNameMapping;
23  import org.apache.maven.plugin.ear.output.FileNameMappingFactory;
24  import org.apache.maven.plugin.ear.util.ArtifactRepository;
25  import org.apache.maven.plugin.ear.util.ArtifactTypeMappingService;
26  import org.apache.maven.project.MavenProject;
27  
28  /**
29   * Contains various runtime parameters used to customize the generated EAR file.
30   *
31   * @author <a href="snicoll@apache.org">Stephane Nicoll</a>
32   * @version $Id: EarExecutionContext.java 942855 2010-05-10 19:13:52Z krosenvold $
33   */
34  public class EarExecutionContext
35  {
36      private String defaultLibBundleDir;
37  
38      private JbossConfiguration jbossConfiguration;
39  
40      private FileNameMapping fileNameMapping;
41  
42      private ArtifactRepository artifactRepository;
43  
44  
45      public EarExecutionContext( MavenProject project, String mainArtifactId, String defaultLibBundleDir,
46                                  JbossConfiguration jbossConfiguration, String fileNameMappingName,
47                                  ArtifactTypeMappingService typeMappingService )
48      {
49          initialize( project, mainArtifactId, defaultLibBundleDir, jbossConfiguration, fileNameMappingName, typeMappingService );
50  
51      }
52  
53      public String getDefaultLibBundleDir()
54      {
55          return defaultLibBundleDir;
56      }
57  
58      public boolean isJbossConfigured()
59      {
60          return jbossConfiguration != null;
61      }
62  
63      public FileNameMapping getFileNameMapping()
64      {
65          return fileNameMapping;
66      }
67  
68      public ArtifactRepository getArtifactRepository()
69      {
70          return artifactRepository;
71      }
72  
73      private void initialize( MavenProject project, String mainArtifactId, String defaultLibBundleDir, JbossConfiguration jbossConfiguration,
74                               String fileNameMappingName, ArtifactTypeMappingService typeMappingService )
75      {
76          this.artifactRepository = new ArtifactRepository( project.getArtifacts(), mainArtifactId,
77                                                            typeMappingService );
78          this.defaultLibBundleDir = defaultLibBundleDir;
79          this.jbossConfiguration = jbossConfiguration;
80          if ( fileNameMappingName == null || fileNameMappingName.trim().length() == 0 )
81          {
82              this.fileNameMapping = FileNameMappingFactory.getDefaultFileNameMapping();
83          }
84          else
85          {
86              this.fileNameMapping = FileNameMappingFactory.getFileNameMapping( fileNameMappingName );
87          }
88      }
89  }