diff --git a/src/main/java/mx/infotec/dads/essence/model/foundation/SEPractice.java b/src/main/java/mx/infotec/dads/essence/model/foundation/SEPractice.java index d4c7675..ada886f 100644 --- a/src/main/java/mx/infotec/dads/essence/model/foundation/SEPractice.java +++ b/src/main/java/mx/infotec/dads/essence/model/foundation/SEPractice.java @@ -178,6 +178,11 @@ public class SEPractice extends SEElementGroup implements Practice, KeyWordsInde * Keywords used for search by areas */ private List keyWords; + + /** + * Author of the Practice + */ + private String author; @Override public String getConsistencyRules() { @@ -232,4 +237,12 @@ public List getKeyWords() { public void setKeyWords(List keyWords) { this.keyWords = keyWords; } + + public String getAuthor() { + return author; + } + + public void setAuthor(String author) { + this.author = author; + } }