All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fabric3.policy.resolver.IntentPair Maven / Gradle / Ivy

The newest version!
package org.fabric3.policy.resolver;

import java.util.Set;

import org.fabric3.api.model.type.definitions.Intent;

/**
 * Holder for provided and aggregated intents.
 */
public class IntentPair {
    private Set aggregatedIntents;
    private Set providedIntents;

    public IntentPair(Set aggregatedIntents, Set providedIntents) {
        this.aggregatedIntents = aggregatedIntents;
        this.providedIntents = providedIntents;
    }

    public Set getAggregatedIntents() {
        return aggregatedIntents;
    }

    public Set getProvidedIntents() {
        return providedIntents;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy