Skip to content

Commit

Permalink
adding author
Browse files Browse the repository at this point in the history
adding author
  • Loading branch information
danimaniarqsoft committed May 20, 2017
1 parent 2c6839a commit 9bd8a4e
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ public class SEPractice extends SEElementGroup implements Practice, KeyWordsInde
* Keywords used for search by areas
*/
private List<String> keyWords;

/**
* Author of the Practice
*/
private String author;

@Override
public String getConsistencyRules() {
Expand Down Expand Up @@ -232,4 +237,12 @@ public List<String> getKeyWords() {
public void setKeyWords(List<String> keyWords) {
this.keyWords = keyWords;
}

public String getAuthor() {
return author;
}

public void setAuthor(String author) {
this.author = author;
}
}

0 comments on commit 9bd8a4e

Please sign in to comment.