01: package org.claros.mini.controllers;
02:
03: import org.claros.commons.mail.models.ConnectionMetaHandler;
04: import org.claros.commons.mail.models.ConnectionProfile;
05: import org.claros.commons.models.AuthProfile;
06:
07: /**
08: * @author Umut Gokbayrak
09: */
10: public class InboxControllerBase {
11: protected ConnectionProfile profile;
12: protected AuthProfile auth;
13: protected ConnectionMetaHandler handler = null;
14:
15: /**
16: *
17: * @param profile
18: * @param auth
19: * @param handler
20: */
21: public InboxControllerBase(AuthProfile auth,
22: ConnectionProfile profile, ConnectionMetaHandler handler) {
23: this.profile = profile;
24: this.auth = auth;
25: this.handler = handler;
26: }
27:
28: }
|