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

org.codehaus.mojo.truezip.FileItem Maven / Gradle / Ivy

The newest version!
package org.codehaus.mojo.truezip;

/*
 * 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.
 */

import org.codehaus.plexus.util.StringUtils;

import de.schlichtherle.truezip.file.TFile;

/**
 * Taken from assembly maven plugin
 */
public class FileItem
{
    /**
     * The absolute path of source
     */
    private String source;

    /**
     * Sets the output directory relative to the root of the root directory of the assembly. For example, "log" will put
     * the specified files in the log directory.
     */
    private String outputDirectory = "";

    /**
     * Sets the destination filename in the outputDirectory. Default is the same name as the source's file.
     */
    private String destName;

    /**
     * Similar to a UNIX permission, sets the file mode of the files included. Format: (User)(Group)(Other) where each
     * component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the value 0644 translates to User
     * read-write, Group and Other read-only. (more on unix-style permissions)
     */

    private String fileMode;

    /**
     * Sets the line-endings of the files in this file. Valid values are:
     * 
    *
  • "keep" - Preserve all line endings
  • *
  • "unix" - Use Unix-style line endings
  • *
  • "lf" - Use a single line-feed line endings
  • *
  • "dos" - Use DOS-style line endings
  • *
  • "crlf" - Use Carraige-return, line-feed line endings
  • *
*/ private String lineEnding; /** * Sets whether to determine if the file is filtered. */ private boolean filtered; public String getSource() { return source; } public void setSource( String source ) { this.source = source; } public String getOutputDirectory() { return outputDirectory; } public void setOutputDirectory( String outputDirectory ) { this.outputDirectory = outputDirectory; } public String getDestName() { return destName; } public void setDestName( String destName ) { this.destName = destName; } public String getFileMode() { return fileMode; } public void setFileMode( String fileMode ) { this.fileMode = fileMode; } public String getLineEnding() { return lineEnding; } public void setLineEnding( String lineEnding ) { this.lineEnding = lineEnding; } public boolean isFiltered() { return filtered; } public void setFiltered( boolean filtered ) { this.filtered = filtered; } /** * return destination path * * @return */ public String getDestinationPath() { if ( this.destName == null ) { this.destName = new TFile( source ).getName(); } if ( StringUtils.isBlank( this.outputDirectory ) ) { return this.destName; } return this.outputDirectory + "/" + this.destName; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy