Skip to content
Snippets Groups Projects
Commit 25c80f5d authored by felmer's avatar felmer
Browse files

LMS-779 email attribute added

SVN: 10350
parent bbc05aab
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ import java.io.Serializable;
import ch.systemsx.cisd.openbis.generic.shared.GenericSharedConstants;
/**
*
* Context data needed for uploading data sets to a CIFEX server.
*
* @author Franz-Josef Elmer
*/
......@@ -37,6 +37,8 @@ public class DataSetUploadContext implements Serializable
private String comment;
private String email;
public final String getCifexURL()
{
return cifexURL;
......@@ -76,4 +78,14 @@ public class DataSetUploadContext implements Serializable
{
this.comment = comment;
}
public final String getUserEMail()
{
return email;
}
public final void setUserEMail(String email)
{
this.email = email;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment