Class Raw
- java.lang.Object
-
- ch.colabproject.colab.tests.mailhog.model.Raw
-
public class Raw extends Object
Raw part of Mailhog message.- Author:
- maxence
-
-
Constructor Summary
Constructors Constructor Description Raw()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getData()
Get the value of dataString
getFrom()
Get the value of fromString
getHelo()
Get the value of heloList<String>
getTo()
Get the value of tovoid
setData(String data)
Set the value of datavoid
setFrom(String from)
Set the value of fromvoid
setHelo(String helo)
Set the value of helovoid
setTo(List<String> to)
Set the value of to
-
-
-
Method Detail
-
getHelo
public String getHelo()
Get the value of helo- Returns:
- the value of helo
-
setHelo
public void setHelo(String helo)
Set the value of helo- Parameters:
helo
- new value of helo
-
getFrom
public String getFrom()
Get the value of from- Returns:
- the value of from
-
setFrom
public void setFrom(String from)
Set the value of from- Parameters:
from
- new value of from
-
getData
public String getData()
Get the value of data- Returns:
- the value of data
-
setData
public void setData(String data)
Set the value of data- Parameters:
data
- new value of data
-
-