Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
Implement service method getImpactedRemoteActions() for class RemoteA…
Browse files Browse the repository at this point in the history
…ction.
  • Loading branch information
DivineThreepwood committed Jan 14, 2020
1 parent 3cb40ed commit bf648d4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.*;

Expand Down Expand Up @@ -1159,6 +1160,10 @@ public UnitRemote<?> getTargetUnit() throws NotAvailableException {
return targetUnit;
}

public List<RemoteAction> getImpactedRemoteActions() {
return Collections.unmodifiableList(impactedRemoteActions);
}

/**
* Generates a string representation of this action.
*
Expand Down

0 comments on commit bf648d4

Please sign in to comment.