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

jadex.platform.service.awareness.management.AwarenessSettingsData Maven / Gradle / Ivy

package jadex.platform.service.awareness.management;

import java.net.InetAddress;

import jadex.commons.transformation.annotations.IncludeFields;

/**
 * The awareness settings transferred between GUI and agent.
 */
@IncludeFields
public class AwarenessSettingsData {
	/** The inet address. */
	public InetAddress address;

	/** The port. */
	public int port;

	/** The delay. */
	public long delay;

	/** The fast awareness flag. */
	public boolean fast;

	/** The autocreate flag. */
	public boolean autocreate;

	/** The autocreate flag. */
	public boolean autodelete;

	/** The includes list. */
	public String[] includes;

	/** The excludes list. */
	public String[] excludes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy