Created
December 11, 2013 03:40
-
-
Save taywils/7904766 to your computer and use it in GitHub Desktop.
spark_storage_step_2_2
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
public Article(String title, String summary, String content, Integer id, Date createdAt, Boolean deleted) { | |
this.title = title; | |
this.summary = summary; | |
this.content = content; | |
this.createdAt = createdAt; | |
this.id = id; | |
this.deleted = deleted; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment