All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.imolinfo.maven.plugins.jboss.fuse.options.Cfg Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016 Imola Informatica S.P.A..
 *
 * 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 it.imolinfo.maven.plugins.jboss.fuse.options;

import java.io.File;
import java.util.Properties;

/**
 *
 * @author giacomo
 */
public class Cfg {
    public enum Option {
        APPEND,
        REPLACE,
        COPY,
        FEATURES
    }
    
    private Option option; 
    private File source;
    private String destination;
    private String target;
    private String replacement;
    private Properties properties;
    
    public File getSource() {
        return source;
    }

    public void setSource(File source) {
        this.source = source;
    }

    public Option getOption() {
        return option;
    }

    public void setOption(Option option) {
        this.option = option;
    }

    public String getTarget() {
        return target;
    }

    public void setTarget(String target) {
        this.target = target;
    }

    public String getReplacement() {
        return replacement;
    }

    public void setReplacement(String replacement) {
        this.replacement = replacement;
    }

    public Properties getProperties() {
        return properties;
    }

    public void setProperties(Properties properties) {
        this.properties = properties;
    }

    public String getDestination() {
        return destination;
    }

    public void setDestination(String destination) {
        this.destination = destination;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy