aQute.maven.dto.SiteDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bnd Show documentation
Show all versions of biz.aQute.bnd Show documentation
This command line utility is the Swiss army knife of OSGi. It provides you with a breadth of tools to understand and manage OSGi based systems. This project basically uses bndlib.
package aQute.maven.dto;
import java.net.URI;
import aQute.bnd.util.dto.DTO;
/**
* Contains the information needed for deploying websites.
*/
public class SiteDTO extends DTO {
/**
* A unique identifier for a deployment location. This is used to match the site to configuration in the settings.xml
file, for example.
*/
public String id;
/**
* Human readable name of the deployment location.
*/
public String name;
/**
* The url of the location where website is deployed, in the form protocol://hostname/path
.
Default value is: parent value [+ path adjustment] + artifactId
*/
public URI url;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy