⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assemblerconfig.java

📁 portal越来越流行了
💻 JAVA
字号:
/*
 * 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 <code>setSource(File)</code> instead.
     */
    public void setWarSource(File source) {
        this.source = source;
    }
    
    public void setSource(File source) {
        this.source = source;
    }
    
    /**
     * @deprecated use <code>getSource()</code> instead.
     */
    public File getWarSource() {
        return source;
    }
    
    public File getSource() {
        return source;
    }
    
    public int getAssemblerSinkBuflen() {
        return assemblerSinkBuflen;
    }
    
    public void setAssemblerSinkBuflen(int buflen) {
        this.assemblerSinkBuflen = buflen;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -