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

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

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

import com.enonic.xp.annotation.PublicApi;

@PublicApi
@Deprecated
public class FindNodePathsByQueryResult
{
    private final NodePaths paths;

    private FindNodePathsByQueryResult( final Builder builder )
    {
        this.paths = builder.nodePaths.build();
    }

    public NodePaths getPaths()
    {
        return paths;
    }

    public static Builder create()
    {
        return new Builder();
    }

    public static final class Builder
    {
        private final NodePaths.Builder nodePaths = NodePaths.create();

        private Builder()
        {
        }

        public Builder paths( NodePaths paths )
        {
            if ( paths != null )
            {
                nodePaths.addNodePaths( paths.getSet() );
            }
            return this;
        }

        public Builder path(NodePath path) {
            if(path != null) {
                nodePaths.addNodePath( path );
            }
            return this;
        }

        public Builder path( String path )
        {
            if ( path != null )
            {
                nodePaths.addNodePath( new NodePath( path ) );
            }
            return this;
        }

        public FindNodePathsByQueryResult build()
        {
            return new FindNodePathsByQueryResult( this );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy