01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19:
20: package org.apache.axis2.transport.mail.server;
21:
22: import org.apache.axis2.AxisFault;
23: import org.apache.commons.logging.Log;
24: import org.apache.commons.logging.LogFactory;
25:
26: import java.io.IOException;
27: import java.net.ServerSocket;
28: import java.net.Socket;
29:
30: public class POP3Server extends Thread {
31: private static final Log log = LogFactory.getLog(POP3Server.class);
32: private Storage st = null;
33: private ServerSocket serverSocket;
34:
35: public POP3Server(Storage st, int port) throws AxisFault {
36: this .st = st;
37:
38: try {
39: synchronized (this ) {
40: serverSocket = new ServerSocket(port);
41: log.info("Server started on port " + port);
42: }
43: } catch (IOException e) {
44: throw new AxisFault(e.getMessage(), e);
45: }
46: }
47:
48: public void run() {
49: while (true) {
50: try {
51: Socket socket = serverSocket.accept();
52: POP3Worker thread = new POP3Worker(socket, st);
53:
54: thread.start();
55: } catch (Exception e) {
56: log.error(e.getMessage(), e);
57: }
58: }
59: }
60:
61: public void stopServer() throws AxisFault {
62: try {
63: synchronized (this ) {
64: serverSocket.close();
65: }
66: } catch (IOException e) {
67: throw new AxisFault(e.getMessage(), e);
68: }
69: }
70: }
|