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

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

The 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 - 2024 Weber Informatics LLC | Privacy Policy