blob: 8e38e35c82527733f50ed3ae7616ce709750fe8e [file] [log] [blame]
package org.apache.maven.plugin.ear;
import java.io.File;
import java.util.List;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* A context for the {@link ApplicationXmlWriter}.
*
* @author <a href="snicoll@apache.org">Stephane Nicoll</a>
* @version $Id: ApplicationXmlWriter.java 728546 2008-12-21 22:56:51Z bentmann $
*/
class ApplicationXmlWriterContext {
private final File destinationFile;
private final List earModules;
private final List securityRoles;
private final String displayName;
private final String description;
private final String libraryDirectory;
public ApplicationXmlWriterContext(File destinationFile, List earModules, List securityRoles,
String displayName, String description, String libraryDirectory) {
this.destinationFile = destinationFile;
this.earModules = earModules;
this.securityRoles = securityRoles;
this.displayName = displayName;
this.description = description;
this.libraryDirectory = libraryDirectory;
}
/**
* Returns the name of the file to use to write application.xml to.
*
* @return the output file
*/
public File getDestinationFile() {
return destinationFile;
}
/**
* Returns the list of {@link EarModule} instances.
*
* @return the ear modules
*/
public List getEarModules() {
return earModules;
}
/**
* Returns the list of {ÂŽlink SecurityRole} instances.
*
* @return the security roles
*/
public List getSecurityRoles() {
return securityRoles;
}
/**
* Returns the display name.
*
* @return the display name
*/
public String getDisplayName() {
return displayName;
}
/**
* Returns the description.
*
* @return the description
*/
public String getDescription() {
return description;
}
/**
* Returns the library directory (as per JavaEE 5).
*
* @return the library directory
*/
public String getLibraryDirectory() {
return libraryDirectory;
}
}