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

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

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

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

@PublicApi
@Deprecated
public class CompareContentParams
{
    private final ContentId contentId;

    private final Branch target;

    public CompareContentParams( final ContentId contentId, final Branch target )
    {
        this.contentId = contentId;
        this.target = target;
    }

    public ContentId getContentId()
    {
        return contentId;
    }

    public Branch getTarget()
    {
        return target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy