15. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/14/2017 6:57:19 AM Central Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

15.1 Files compared

# Location File Last Modified
1 cbs.zip\cbs\cbs\src\main\java\gov\va\cpss\email SmtpMailConfigurer.java Thu Nov 9 14:19:42 2017 UTC
2 cbs.zip\cbs\cbs\src\main\java\gov\va\cpss\email SmtpMailConfigurer.java Tue Nov 14 12:33:52 2017 UTC

15.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 108
Changed 1 2
Inserted 0 0
Removed 0 0

15.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

15.4 Active regular expressions

No regular expressions were active.

15.5 Comparison detail

  1   package go v.va.cpss. email;
  2  
  3   /**
  4    * Interfa ce for con figuring S MTP mail p roperties.  Implement ation shou ld ensure
  5    * that th e desired  mail relat ed propert ies are co nfigured a s system p roperties
  6    * for use  by javax. mail.
  7    * 
  8    * @author  Brad Pick le
  9    *
  10    */
  11   public int erface Smt pMailConfi gurer {
  12  
  13           pu blic stati c final St ring MAIL_ SMTP_HOST_ PROPERTY =  "mail.smt p.host";
  14  
  15           pu blic stati c final St ring MAIL_ SMTP_PORT_ PROPERTY =  "mail.smt p.port";
  16  
  17           pu blic stati c final St ring DEFAU LT_MAIL_SM TP_HOST =  "localhost ";
  18  
  19           pu blic stati c final in t DEFAULT_ MAIL_SMTP_ PORT =  PORT ;
  20  
  21           /* *
  22            *  Return th e mail.smt p.host pro perty that  will be u sed by the  javax.mai l
  23            *  system.
  24            *  
  25            *  @return S tring mail .smtp.host  property.
  26            * /
  27           St ring getMa ilSmtpHost ();
  28  
  29           /* *
  30            *  Set the m ail.smtp.h ost proper ty that wi ll be used  by the ja vax.mail
  31            *  system.
  32            *  
  33            *  @param ma ilSmtpHost
  34            *              mail.smt p.host pro perty.
  35            * /
  36           vo id setMail SmtpHost(S tring mail SmtpHost);
  37  
  38           /* *
  39            *  Return th e mail.smt p.port pro perty that  will be u sed by the  javax.mai l
  40            *  system.
  41            *  
  42            *  @return S tring mail .smtp.port  property.
  43            * /
  44           St ring getMa ilSmtpPort ();
  45  
  46           /* *
  47            *  Set the m ail.smtp.p ort proper ty that wi ll be used  by the ja vax.mail
  48            *  system.
  49            *  
  50            *  @param ma ilSmtpPort
  51            *              mail.smt p.port pro perty.
  52            * /
  53           vo id setMail SmtpPort(S tring mail SmtpPort);
  54  
  55   }