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

com.weavechain.core.permissions.Permission Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.weavechain.core.permissions;

import lombok.AllArgsConstructor;
import lombok.Getter;

import java.util.List;

@Getter
@AllArgsConstructor
public class Permission {

    public static final List ALL = null;

    private final PermissionType type;

    private final String scope;

    private final List tables;

    public static Permission of(PermissionType type, String scope, List tables) {
        return new Permission(type, scope, tables);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy