Skip to content

Commit

Permalink
improve api of method
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulBredl committed May 24, 2024
1 parent 5e15b06 commit 34994b3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package de.unistuttgart.iste.meitrex.scrumgame.ims;

import de.unistuttgart.iste.meitrex.generated.dto.*;
import org.springframework.lang.Nullable;

import java.time.OffsetDateTime;
import java.util.*;
Expand Down Expand Up @@ -30,9 +31,9 @@ public interface ImsConnector {
* Finds a list of issues by their IDs.
*
* @param ids The IDs of the issues.
* @return A list of Issue objects.
* @return A list of Issue objects with null entries for IDs that were not found.
*/
List<Optional<Issue>> findIssuesBatched(List<String> ids);
List<Issue> findIssuesBatched(List<String> ids);

/**
* Retrieves a list of events that have occurred in the ims project for a specific issue.
Expand Down

0 comments on commit 34994b3

Please sign in to comment.