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

com.descope.sdk.mgmt.PermissionService Maven / Gradle / Ivy

There is a newer version: 1.0.30
Show newest version
package com.descope.sdk.mgmt;

import com.descope.exception.DescopeException;
import com.descope.model.permission.PermissionResponse;

public interface PermissionService {
  void create(String name, String description) throws DescopeException;

  void update(String name, String newName, String description) throws DescopeException;

  void delete(String name) throws DescopeException;

  PermissionResponse loadAll() throws DescopeException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy