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

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

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


import com.google.common.base.Preconditions;

import com.enonic.xp.annotation.PublicApi;

@PublicApi
public final class RenameContentParams
{
    private final ContentId contentId;

    private final ContentName newName;

    private final boolean stopInherit;

    public RenameContentParams( Builder builder )
    {
        this.contentId = builder.contentId;
        this.newName = builder.newName;
        this.stopInherit = builder.stopInherit;
    }

    public ContentId getContentId()
    {
        return contentId;
    }

    public ContentName getNewName()
    {
        return newName;
    }

    public boolean stopInherit()
    {
        return stopInherit;
    }

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

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

    @Deprecated
    public void validate()
    {
    }

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

    public static class Builder
    {
        private ContentId contentId;

        private ContentName newName;

        private boolean stopInherit = true;

        public Builder contentId( final ContentId contentId )
        {
            this.contentId = contentId;
            return this;
        }

        public Builder newName( final ContentName newName )
        {
            this.newName = newName;
            return this;
        }

        public Builder stopInherit( final boolean stopInherit )
        {
            this.stopInherit = stopInherit;
            return this;
        }

        public RenameContentParams build()
        {
            Preconditions.checkNotNull( this.contentId, "Content id cannot be null" );
            Preconditions.checkNotNull( this.newName, "name cannot be null" );
            return new RenameContentParams( this );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy