
com.lotaris.maven.plugin.glassfish.command.argument.IArgumentName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lotaris-glassfish-maven-plugin Show documentation
Show all versions of lotaris-glassfish-maven-plugin Show documentation
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();
}