Coverage Report - com.jcabi.email.wire.SMTPS
 
Classes in this File Line Coverage Branch Coverage Complexity
SMTPS
75%
6/8
N/A
2.5
 
 1  
 /**
 2  
  * Copyright (c) 2014-2017, jcabi.com
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the jcabi.com nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package com.jcabi.email.wire;
 31  
 
 32  
 import com.jcabi.email.Wire;
 33  
 import java.io.IOException;
 34  
 import javax.mail.MessagingException;
 35  
 import javax.mail.Session;
 36  
 import javax.mail.Transport;
 37  
 
 38  
 /**
 39  
  * SMTPS wire.
 40  
  *
 41  
  * <p>This is how you're supposed to use it:
 42  
  *
 43  
  * <pre> Postman postman = new Postman.Default(
 44  
  *   new SMTPS(
 45  
  *     new Token("user", "password").access(
 46  
  *       new Protocol.SMTPS("smtp.gmail.com", 587)
 47  
  *     )
 48  
  *   )
 49  
  * );
 50  
  * </pre>
 51  
  *
 52  
  * @author Mihai Andronache (amihaiemil@gmail.com)
 53  
  * @version $Id: bca558d119810781d58aef8254bf01ba179c1814 $
 54  
  * @since 1.9
 55  
  */
 56  
 public final class SMTPS implements Wire {
 57  
 
 58  
     /**
 59  
      * Mail session.
 60  
      */
 61  
     private final transient Session session;
 62  
 
 63  
     /**
 64  
      * Public ctor.
 65  
      * @param session Session.
 66  
      */
 67  1
     public SMTPS(final Session session) {
 68  1
         this.session = session;
 69  1
     }
 70  
 
 71  
     @Override
 72  
     public Transport connect() throws IOException {
 73  
         try {
 74  1
             final Transport transport = this.session.getTransport("smtps");
 75  1
             transport.connect();
 76  1
             return transport;
 77  0
         } catch (final MessagingException ex) {
 78  0
             throw new IOException(ex);
 79  
         }
 80  
     }
 81  
 }