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

org.apache.pluto.util.assemble.AssemblerConfig Maven / Gradle / Ivy

There is a newer version: 3.1.2
Show newest version
/*
 * 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.
 */
package org.apache.pluto.util.assemble;

import java.io.File;

/**
 * The Pluto Assembler configuration encapsulates the configuration
 * used by assembler implementations.
 */
public class AssemblerConfig {

	// Private Member Variables ------------------------------------------------

	/** The portlet app descriptor, which is usually WEB-INF/portlet.xml. */
    private File portletDescriptor;

    /** The webapp descriptor to assemble, which is usually WEB-INF/web.xml. */
    private File webappDescriptor;

    /** The assemble destination, which points to the assembled WAR file. */
    private File destination;

    /** The class of the servlet that will handle portlet requests */
    private String dispatchServletClass;

    /** The source archive to assemble */
    private File source;
    
    /** Assembler sink buffer size.  Defaults to 4096 bytes. */
    private int assemblerSinkBuflen = 1024 * 4; // 4kb

    // Public Methods ----------------------------------------------------------

    public File getPortletDescriptor() {
        return portletDescriptor;
    }

    public void setPortletDescriptor(File portletDescriptor) {
        this.portletDescriptor = portletDescriptor;
    }

    public File getWebappDescriptor() {
        return webappDescriptor;
    }

    public void setWebappDescriptor(File webappDescriptor) {
        this.webappDescriptor = webappDescriptor;
    }

    public File getDestination() {
        return destination;
    }

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

    public String getDispatchServletClass() {
        return dispatchServletClass;
    }

    public void setDispatchServletClass(String dispatchServletClass) {
        this.dispatchServletClass = dispatchServletClass;
    }

    /**
     * @deprecated use setSource(File) instead.
     */
    public void setWarSource(File source) {
        this.source = source;
    }
    
    public void setSource(File source) {
        this.source = source;
    }
    
    /**
     * @deprecated use getSource() instead.
     */
    public File getWarSource() {
        return source;
    }
    
    public File getSource() {
        return source;
    }
    
    public int getAssemblerSinkBuflen() {
        return assemblerSinkBuflen;
    }
    
    public void setAssemblerSinkBuflen(int buflen) {
        this.assemblerSinkBuflen = buflen;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy