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

org.redline_rpm.ant.Link Maven / Gradle / Ivy

Go to download

Redline is a pure Java library for manipulating RPM Package Manager packages.

There is a newer version: 1.2.10
Show newest version
package org.redline_rpm.ant;

/**
 * Object describing a symbolic link
 * to be generated on the target machine
 * during installation of the RPM file.
 */
public class Link {

	protected String path;
	protected String target;
	protected int permissions = -1;

	public void setPath( String path) {
		this.path = path;
	}

	public String getPath() {
		return path;
	}

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

	public String getTarget() {
		return target;
	}

	public void setPermissions( int permissions) {
		this.permissions = permissions;
	}

	public int getPermissions() {
		return permissions;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy