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

com.enonic.xp.content.CompareContentsParams Maven / Gradle / Ivy

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

import com.google.common.base.Preconditions;

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.branch.Branch;

@PublicApi
public final class CompareContentsParams
{
    private final ContentIds contentIds;

    private final Branch target;

    private CompareContentsParams( final ContentIds contentIds )
    {
        this.contentIds = contentIds;
        this.target = null;
    }

    @Deprecated
    public CompareContentsParams( final ContentIds contentIds, final Branch target )
    {
        this.contentIds = contentIds;
        this.target = target;
    }

    public ContentIds getContentIds()
    {
        return contentIds;
    }

    public Branch getTarget()
    {
        return target;
    }

    @Override
    public boolean equals( final Object o )
    {
        return super.equals( o );
    }

    @Override
    public int hashCode()
    {
        return super.hashCode();
    }

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

    public static final class Builder
    {
        private ContentIds contentIds;

        private Builder()
        {
        }

        public Builder contentIds( final ContentIds contentIds )
        {
            this.contentIds = contentIds;
            return this;
        }

        public CompareContentsParams build()
        {
            Preconditions.checkNotNull( this.contentIds, "Content ids cannot be null" );
            return new CompareContentsParams( this.contentIds );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy