forked from chpladmin/chpl-api
-
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.
feat: chage the structore of the response to be more efficient
OCD-4513
- Loading branch information
Showing
2 changed files
with
13 additions
and
30 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
chpl/chpl-service/src/main/java/gov/healthit/chpl/report/product/ProductByAcb.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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
package gov.healthit.chpl.report.product; | ||
|
||
import gov.healthit.chpl.domain.CertificationBody; | ||
import gov.healthit.chpl.domain.Product; | ||
import gov.healthit.chpl.domain.IdNamePair; | ||
import gov.healthit.chpl.search.domain.ListingSearchResult.DeveloperSearchResult; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class ProductByAcb { | ||
private Product product; | ||
private CertificationBody acb; | ||
private IdNamePair product; | ||
private IdNamePair acb; | ||
private DeveloperSearchResult developer; | ||
} |
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