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

com.enonic.xp.repository.IndexDefinition Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.repository;

import com.enonic.xp.annotation.PublicApi;

@PublicApi
public class IndexDefinition
{
    private final IndexSettings settings;

    private final IndexMapping mapping;

    private IndexDefinition( final Builder builder )
    {
        settings = builder.settings;
        mapping = builder.mapping;
    }

    public IndexSettings getSettings()
    {
        return settings;
    }

    public IndexMapping getMapping()
    {
        return mapping;
    }

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

    public static final class Builder
    {
        private IndexSettings settings;

        private IndexMapping mapping;

        private Builder()
        {
        }

        public Builder settings( final IndexSettings val )
        {
            settings = val;
            return this;
        }

        public Builder mapping( final IndexMapping val )
        {
            mapping = val;
            return this;
        }

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







© 2015 - 2024 Weber Informatics LLC | Privacy Policy