generated from axonivy-market/market-product
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
727 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
702 changes: 382 additions & 320 deletions
702
express-importer/src/com/axonivy/portal/express/importer/DialogWriter.java
Large diffs are not rendered by default.
Oops, something went wrong.
59 changes: 59 additions & 0 deletions
59
express-importer/src/com/axonivy/portal/express/importer/ExpressEmail.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package com.axonivy.portal.express.importer; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.databind.JsonNode; | ||
|
||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class ExpressEmail implements Serializable { | ||
|
||
private static final long serialVersionUID = -4263607320804462685L; | ||
private String recipients; | ||
private String responseTo; | ||
private String subject; | ||
private String content; | ||
private List<JsonNode> attachments; | ||
|
||
public String getRecipients() { | ||
return recipients; | ||
} | ||
|
||
public void setRecipients(String recipients) { | ||
this.recipients = recipients; | ||
} | ||
|
||
public String getResponseTo() { | ||
return responseTo; | ||
} | ||
|
||
public void setResponseTo(String responseTo) { | ||
this.responseTo = responseTo; | ||
} | ||
|
||
public String getSubject() { | ||
return subject; | ||
} | ||
|
||
public void setSubject(String subject) { | ||
this.subject = subject; | ||
} | ||
|
||
public String getContent() { | ||
return content; | ||
} | ||
|
||
public void setContent(String content) { | ||
this.content = content; | ||
} | ||
|
||
public List<JsonNode> getAttachments() { | ||
return attachments; | ||
} | ||
|
||
public void setAttachments(List<JsonNode> attachments) { | ||
this.attachments = attachments; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.