org.wildfly.build.featurepack.model.FeaturePackBuild Maven / Gradle / Ivy
/*
* Copyright 2014 Red Hat, Inc.
*
* Licensed 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.
*/
package org.wildfly.build.featurepack.model;
import org.wildfly.build.common.model.Config;
import org.wildfly.build.common.model.CopyArtifact;
import org.wildfly.build.common.model.FileFilter;
import org.wildfly.build.common.model.FilePermission;
import java.util.ArrayList;
import java.util.List;
/**
* Representation of the feature pack build config
*
* @author Stuart Douglas
*/
public class FeaturePackBuild {
private final List dependencies = new ArrayList<>();
private final Config config = new Config();
private final List copyArtifacts = new ArrayList<>();
private final List filePermissions = new ArrayList<>();
private final List mkDirs = new ArrayList<>();
private final List windows = new ArrayList<>();
private final List unix = new ArrayList<>();
public List getDependencies() {
return dependencies;
}
public Config getConfig() {
return config;
}
public List getCopyArtifacts() {
return copyArtifacts;
}
public List getFilePermissions() {
return filePermissions;
}
public List getMkDirs() {
return mkDirs;
}
public List getWindows() {
return windows;
}
public List getUnix() {
return unix;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy