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

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

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

import com.google.common.collect.ImmutableList;

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.support.AbstractImmutableEntityList;

@PublicApi
public class ReorderChildContentsParams
    extends AbstractImmutableEntityList
{
    private final ContentId contentId;

    private final boolean silent;

    private final boolean stopInherit;

    private ReorderChildContentsParams( final Builder builder )
    {
        super( builder.orderChildContentParamsList.build() );
        contentId = builder.contentId;
        silent = builder.silent;
        stopInherit = builder.stopInherit;
    }

    public ContentId getContentId()
    {
        return contentId;
    }

    @Deprecated
    public boolean isSilent()
    {
        return silent;
    }

    public boolean stopInherit()
    {
        return stopInherit;
    }

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


    public static class Builder
    {
        private final ImmutableList.Builder orderChildContentParamsList = ImmutableList.builder();

        private ContentId contentId;

        private boolean silent;

        private boolean stopInherit = true;

        public Builder add( final ReorderChildParams orderChildNodeParams )
        {
            this.orderChildContentParamsList.add( orderChildNodeParams );
            return this;
        }

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

        @Deprecated
        public Builder silent( final boolean silent )
        {
            this.silent = silent;
            return this;
        }

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

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

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy