blob: c92b922a4962d91be4ae7a0f8220ce45b7ff9bcb [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.geronimo.javamail.store.pop3;
import javax.mail.Session;
import javax.mail.URLName;
/**
* POP3 implementation of javax.mail.Store over an SSL connection.
*
* @version $Rev: 597135 $ $Date: 2007-11-21 11:26:57 -0500 (Wed, 21 Nov 2007) $
*/
public class POP3SSLStore extends POP3Store {
/**
* Construct an POP3SSLStore item.
*
* @param session The owning javamail Session.
* @param urlName The Store urlName, which can contain server target information.
*/
public POP3SSLStore(Session session, URLName urlName) {
// we're the imaps protocol, our default connection port is 993, and we must use
// an SSL connection for the initial hookup
super(session, urlName, "pop3s", DEFAULT_POP3_SSL_PORT, true);
}
}