com.lotaris.maven.plugin.glassfish.model.JmsService 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 java.util.Set;
import org.apache.maven.plugins.annotations.Parameter;
/**
* Represent the information the configuration of JMS Service
*
* @author Laurent Prevost, [email protected]
*/
public class JmsService {
@Parameter
private Set properties;
public boolean hasProperties() {
return properties != null && !properties.isEmpty();
}
public Set getProperties() {
return properties;
}
@Override
public String toString() {
return
"properties=" + properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy