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

aQute.maven.dto.SiteDTO Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.1.0
Show newest version
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