![JAR search and dependency download from the Maven repository](/logo.png)
jadex.platform.service.awareness.management.AwarenessSettingsData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform Show documentation
Show all versions of jadex-platform Show documentation
The Jadex platform package contains implementations of platform services as well as the platform component itself.
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 - 2025 Weber Informatics LLC | Privacy Policy