MailTemplate.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.strategy;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public abstract class MailTemplate {
  7. //邮件发件人
  8. private String from;
  9. //收件人
  10. private String to;
  11. //邮件标题
  12. private String subject;
  13. //邮件内容
  14. private String context;
  15. //通过构造函数传递足够多的信息
  16. public MailTemplate(String _from,String _to,String _subject,String _context){
  17. this.from = _from;
  18. this.to = _to;
  19. this.subject = _subject;
  20. this.context = _context;
  21. }
  22. public String getFrom() {
  23. return from;
  24. }
  25. public void setFrom(String from) {
  26. this.from = from;
  27. }
  28. public String getTo() {
  29. return to;
  30. }
  31. public void setTo(String to) {
  32. this.to = to;
  33. }
  34. public String getSubject() {
  35. return subject;
  36. }
  37. public void setSubject(String subject) {
  38. this.subject = subject;
  39. }
  40. public void setContext(String context){
  41. this.context = context;
  42. }
  43. //邮件都有内容
  44. public String getContext(){
  45. return context;
  46. }
  47. }