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

com.enonic.xp.node.MultiRepoNodeQuery Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.node;

import java.util.Objects;

public class MultiRepoNodeQuery
{
    private final SearchTargets searchTargets;

    private final NodeQuery nodeQuery;

    public MultiRepoNodeQuery( final SearchTargets searchTargets, final NodeQuery nodeQuery )
    {
        this.searchTargets = Objects.requireNonNull( searchTargets );
        this.nodeQuery = Objects.requireNonNull( nodeQuery );
    }

    public SearchTargets getSearchTargets()
    {
        return searchTargets;
    }

    public NodeQuery getNodeQuery()
    {
        return nodeQuery;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy