-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into DHIS2-18702-42
- Loading branch information
Showing
96 changed files
with
7,983 additions
and
1,205 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,13 +29,31 @@ | |
|
||
import java.util.Collection; | ||
import java.util.List; | ||
import javax.annotation.Nonnull; | ||
import org.hisp.dhis.category.CategoryOptionCombo; | ||
import org.hisp.dhis.common.IdentifiableObjectStore; | ||
import org.hisp.dhis.common.UID; | ||
|
||
/** | ||
* @author Morten Olav Hansen <[email protected]> | ||
*/ | ||
public interface DataElementOperandStore extends IdentifiableObjectStore<DataElementOperand> { | ||
String ID = DataElementOperand.class.getName(); | ||
|
||
/** | ||
* Retrieve all {@link DataElementOperand}s with {@link DataElement}s | ||
* | ||
* @param dataElements {@link DataElement}s | ||
* @return {@link DataElementOperand}s with references to {@link DataElement}s passed in | ||
*/ | ||
List<DataElementOperand> getByDataElement(Collection<DataElement> dataElements); | ||
|
||
/** | ||
* Retrieve all {@link DataElementOperand}s with {@link CategoryOptionCombo} {@link UID}s | ||
* | ||
* @param uids {@link CategoryOptionCombo} {@link UID}s | ||
* @return {@link DataElementOperand}s with references to {@link CategoryOptionCombo} {@link UID}s | ||
* passed in | ||
*/ | ||
List<DataElementOperand> getByCategoryOptionCombo(@Nonnull Collection<UID> uids); | ||
} |
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
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.