org.bidib.wizard.mvc.ping.model.PingTablePreferences Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-client Show documentation
Show all versions of bidibwizard-client Show documentation
jBiDiB BiDiB Wizard Client Application POM
package org.bidib.wizard.mvc.ping.model;
public interface PingTablePreferences {
/**
* Load the preferences entries.
*/
void load();
/**
* Store the current preferences entries.
*/
void store();
/**
* Clear the entries of the preferences.
*/
void clear();
PingTableNodePreferenceEntry getPrefences(long uniqueId);
PingTableNodePreferenceEntry getPrefencesOrDefault(long uniqueId);
}