-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1048 from usnistgov/pre-deploy
Pre deployment fixes
- Loading branch information
Showing
27 changed files
with
1,003 additions
and
663 deletions.
There are no files selected for viewing
762 changes: 394 additions & 368 deletions
762
bootstrap/src/main/java/gov/nist/hit/hl7/igamt/bootstrap/app/BootstrapApplication.java
Large diffs are not rendered by default.
Oops, something went wrong.
261 changes: 116 additions & 145 deletions
261
delta/src/main/java/gov/nist/hit/hl7/igamt/delta/service/EntityDeltaServiceImpl.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
62 changes: 62 additions & 0 deletions
62
ig/src/main/java/gov/nist/hit/hl7/igamt/ig/domain/IgTemplate.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,62 @@ | ||
/** | ||
* This software was developed at the National Institute of Standards and Technology by employees of | ||
* the Federal Government in the course of their official duties. Pursuant to title 17 Section 105 | ||
* of the United States Code this software is not subject to copyright protection and is in the | ||
* public domain. This is an experimental system. NIST assumes no responsibility whatsoever for its | ||
* use by other parties, and makes no guarantees, expressed or implied, about its quality, | ||
* reliability, or any other characteristic. We would appreciate acknowledgement if the software is | ||
* used. This software can be redistributed and/or modified freely provided that any derivative | ||
* works bear some notice that they are derived from it, and any modified versions bear some notice | ||
* that they have been modified. | ||
*/ | ||
package gov.nist.hit.hl7.igamt.ig.domain; | ||
|
||
import java.util.List; | ||
import java.util.Set; | ||
|
||
import org.springframework.data.annotation.Id; | ||
import org.springframework.data.mongodb.core.mapping.Document; | ||
|
||
import gov.nist.hit.hl7.igamt.ig.util.SectionTemplate; | ||
|
||
/** | ||
* @author Abdelghani El Ouakili | ||
* | ||
*/ | ||
@Document | ||
public class IgTemplate { | ||
|
||
@Id | ||
private String id; | ||
private String name; | ||
private String domain; | ||
private List<SectionTemplate> children; | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
public String getDomain() { | ||
return domain; | ||
} | ||
public void setDomain(String domain) { | ||
this.domain = domain; | ||
} | ||
public List<SectionTemplate> getChildren() { | ||
return children; | ||
} | ||
public void setChildren(List<SectionTemplate> children) { | ||
this.children = children; | ||
} | ||
|
||
|
||
} |
27 changes: 27 additions & 0 deletions
27
ig/src/main/java/gov/nist/hit/hl7/igamt/ig/repository/IgTemplateRepository.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,27 @@ | ||
/** | ||
* This software was developed at the National Institute of Standards and Technology by employees of | ||
* the Federal Government in the course of their official duties. Pursuant to title 17 Section 105 | ||
* of the United States Code this software is not subject to copyright protection and is in the | ||
* public domain. This is an experimental system. NIST assumes no responsibility whatsoever for its | ||
* use by other parties, and makes no guarantees, expressed or implied, about its quality, | ||
* reliability, or any other characteristic. We would appreciate acknowledgement if the software is | ||
* used. This software can be redistributed and/or modified freely provided that any derivative | ||
* works bear some notice that they are derived from it, and any modified versions bear some notice | ||
* that they have been modified. | ||
*/ | ||
package gov.nist.hit.hl7.igamt.ig.repository; | ||
|
||
import org.springframework.data.mongodb.repository.MongoRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
import gov.nist.hit.hl7.igamt.ig.domain.IgTemplate; | ||
|
||
/** | ||
* @author Abdelghani El Ouakili | ||
* | ||
*/ | ||
|
||
@Repository("igTemplateRepository") | ||
public interface IgTemplateRepository extends MongoRepository<IgTemplate, String> { | ||
|
||
} |
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.