1 | |
package org.apache.maven.plugin.ear; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
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 | |
|
30 | |
|
31 | |
|
32 | |
|
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 | 0 | { |
49 | 0 | initialize( project, mainArtifactId, defaultLibBundleDir, jbossConfiguration, fileNameMappingName, |
50 | |
typeMappingService ); |
51 | |
|
52 | 0 | } |
53 | |
|
54 | |
public String getDefaultLibBundleDir() |
55 | |
{ |
56 | 0 | return defaultLibBundleDir; |
57 | |
} |
58 | |
|
59 | |
public boolean isJbossConfigured() |
60 | |
{ |
61 | 0 | return jbossConfiguration != null; |
62 | |
} |
63 | |
|
64 | |
public FileNameMapping getFileNameMapping() |
65 | |
{ |
66 | 0 | return fileNameMapping; |
67 | |
} |
68 | |
|
69 | |
public ArtifactRepository getArtifactRepository() |
70 | |
{ |
71 | 0 | return artifactRepository; |
72 | |
} |
73 | |
|
74 | |
private void initialize( MavenProject project, String mainArtifactId, String defaultLibBundleDir, |
75 | |
JbossConfiguration jbossConfiguration, String fileNameMappingName, |
76 | |
ArtifactTypeMappingService typeMappingService ) |
77 | |
{ |
78 | 0 | this.artifactRepository = new ArtifactRepository( project.getArtifacts(), mainArtifactId, typeMappingService ); |
79 | 0 | this.defaultLibBundleDir = defaultLibBundleDir; |
80 | 0 | this.jbossConfiguration = jbossConfiguration; |
81 | 0 | if ( fileNameMappingName == null || fileNameMappingName.trim().length() == 0 ) |
82 | |
{ |
83 | 0 | this.fileNameMapping = FileNameMappingFactory.getDefaultFileNameMapping(); |
84 | |
} |
85 | |
else |
86 | |
{ |
87 | 0 | this.fileNameMapping = FileNameMappingFactory.getFileNameMapping( fileNameMappingName ); |
88 | |
} |
89 | 0 | } |
90 | |
} |