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

com.lotaris.maven.plugin.glassfish.model.RedeployConfiguration Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.2.2
Show newest version
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