com.lotaris.maven.plugin.glassfish.model.RedeployConfiguration 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.
package com.lotaris.maven.plugin.glassfish.model;
import org.apache.maven.plugins.annotations.Parameter;
/**
* The re-deployment configuration of an application
*
* @author Laurent Prevost, [email protected]
*/
public class RedeployConfiguration extends AbstractDeployConfiguration {
@Parameter(required = true)
private String name;
public String getName() {
return name;
}
public DeployConfiguration getDeployConfiguration() {
return new DeployConfiguration(this);
}
@Override
public String toString() {
return "super(" + super.toString() + "), " +
"name=" + name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy