summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/AclMapping.java
blob: 8c7701a7534596f7a65ff0615a9b0d7000e4160d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.container.jdisc;

/**
 * Mapping from request to action
 *
 * @author mortent
 */
public interface AclMapping {
    enum Action {create, read, update, delete};

    Action get(RequestView requestView);
}