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

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

There is a newer version: 7.1.0
Show newest version
package aQute.maven.dto;

/**
 * This is the property specification used to activate a profile. If the value
 * field is empty, then the existence of the named property will activate the
 * profile, otherwise it does a case-sensitive match against the property value
 * as well.
 */
public class ActivationPropertyDTO {
	/**
	 * The name of the property to be used to activate a profile.
	 */
	public String	name;

	/**
	 * The value of the property required to activate a profile.
	 */

	public String	value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy