![JAR search and dependency download from the Maven repository](/logo.png)
org.redline_rpm.ant.Link Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redline-td Show documentation
Show all versions of redline-td Show documentation
Redline is a pure Java library for manipulating RPM Package Manager packages.
The 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 - 2025 Weber Informatics LLC | Privacy Policy