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

com.enonic.xp.index.PurgeIndexParams Maven / Gradle / Ivy

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

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.repository.RepositoryId;

@PublicApi
public class PurgeIndexParams
{

    private final RepositoryId repositoryId;


    public PurgeIndexParams( final RepositoryId repositoryId )
    {
        this.repositoryId = repositoryId;
    }

    public RepositoryId getRepositoryId()
    {
        return repositoryId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy