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

com.lotaris.maven.plugin.glassfish.model.JmsService 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 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