Class ResolvedResources<R>
- java.lang.Object
-
- com.netflix.genie.common.internal.dtos.ResolvedResources<R>
-
- Type Parameters:
R
- The type of the resource that was resolved
public class ResolvedResources<R> extends java.lang.Object
Representing the result of resolving resources of type R from aCriterion
.- Since:
- 4.0.0
-
-
Constructor Summary
Constructors Constructor Description ResolvedResources(Criterion criterion, java.util.Set<R> resources)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<R>
getResources()
Get the resources that were resolved.
-
-
-
Method Detail
-
getResources
public java.util.Set<R> getResources()
Get the resources that were resolved.- Returns:
- The resolved resources as an immutable
Set
. Any attempt to modify will cause error.
-
-