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

com.lotaris.maven.plugin.glassfish.command.argument.IArgumentName Maven / Gradle / Ivy

Go to download

Glassfish Asadmin maven plugin with full arguments supported through XML pom configuration.

The newest version!
package com.lotaris.maven.plugin.glassfish.command.argument;

/**
 * Define what is a an argument name
 * 
 * @author Laurent Prevost, laurent.prevost@lotaris.com
 */
public interface IArgumentName {
	/**
	 * @return Retrieve the textual name of an argument
	 */
	String getArgName();
	
	/**
	 * @return Retrieve if the argument is a boolean or not
	 */
	boolean isBoolean();
	
	/**
	 * @return Retrieve an eventual default value
	 */
	String getDefaultValue();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy