public class SendmailMessage extends Object implements Serializable
Constructor and Description |
---|
SendmailMessage() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Overrides the Object.equals method.
|
String |
getBody()
Returns the value of field 'body'.
|
String |
getFrom()
Returns the value of field 'from'.
|
String |
getSubject()
Returns the value of field 'subject'.
|
String |
getTo()
Returns the value of field 'to'.
|
int |
hashCode()
Overrides the Object.hashCode method.
|
void |
setBody(String body)
Sets the value of field 'body'.
|
void |
setFrom(String from)
Sets the value of field 'from'.
|
void |
setSubject(String subject)
Sets the value of field 'subject'.
|
void |
setTo(String to)
Sets the value of field 'to'.
|
public boolean equals(Object obj)
public String getBody()
public String getFrom()
public String getSubject()
public String getTo()
public int hashCode()
The following steps came from Effective Java Programming Language Guide by Joshua Bloch, Chapter 3
public void setBody(String body)
body
- the value of field 'body'.public void setFrom(String from)
from
- the value of field 'from'.public void setSubject(String subject)
subject
- the value of field 'subject'.public void setTo(String to)
to
- the value of field 'to'.Copyright © 2017. All rights reserved.