import org.apache.logging.log4j.Logger;
import org.mxchange.jcore.application.Application;
import org.mxchange.jcore.client.Client;
+import org.mxchange.jcore.contact.Contact;
import org.mxchange.jcore.database.frontend.DatabaseFrontend;
import org.mxchange.jcore.manager.Manageable;
*/
private Client client;
+ /**
+ * Contact instance
+ */
+ private Contact contact;
+
/**
* Manager instance
*/
*
* @return DatabaseFrontend instance
*/
- protected DatabaseFrontend getWrapper () {
+ protected final DatabaseFrontend getWrapper () {
return this.wrapper;
}
*
* @param wrapper A DatabaseFrontend instance
*/
- protected void setWrapper (final DatabaseFrontend wrapper) {
+ protected final void setWrapper (final DatabaseFrontend wrapper) {
this.wrapper = wrapper;
}
-
+
+ /**
+ * Getter for Contact instance
+ *
+ * @return Contact instance
+ */
+ protected final Contact getContact () {
+ return this.contact;
+ }
+
+ /**
+ * Setter for Contact instance
+ *
+ * @param contact A Contact instance
+ */
+ protected final void setContact (final Contact contact) {
+ this.contact = contact;
+ }
+
/**
* Initializes i18n bundles
*/