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

com.enonic.xp.scheduler.SchedulerConstants Maven / Gradle / Ivy

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

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.branch.Branch;
import com.enonic.xp.node.NodeType;
import com.enonic.xp.repository.RepositoryId;
import com.enonic.xp.security.RoleKeys;
import com.enonic.xp.security.acl.AccessControlEntry;
import com.enonic.xp.security.acl.AccessControlList;

@PublicApi
public final class SchedulerConstants
{
    public static final RepositoryId SCHEDULER_REPO_ID = RepositoryId.from( "system.scheduler" );

    public static final Branch SCHEDULER_BRANCH = Branch.create().
        value( "master" ).
        build();

    public static final AccessControlList SCHEDULER_REPO_DEFAULT_ACL = AccessControlList.create().
        add( AccessControlEntry.create().
            allowAll().
            principal( RoleKeys.ADMIN ).
            build() ).
        build();

    public static final NodeType NODE_TYPE = NodeType.from( "scheduler" );

    private SchedulerConstants()
    {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy