forked from basho/riak_cs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathriak_cs_policy.erl
More file actions
31 lines (28 loc) · 1.38 KB
/
riak_cs_policy.erl
File metadata and controls
31 lines (28 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
%% ---------------------------------------------------------------------
%%
%% Copyright (c) 2007-2013 Basho Technologies, Inc. All Rights Reserved.
%%
%% This file is provided to you under the Apache License,
%% Version 2.0 (the "License"); you may not use this file
%% except in compliance with the License. You may obtain
%% a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing,
%% software distributed under the License is distributed on an
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
%% KIND, either express or implied. See the License for the
%% specific language governing permissions and limitations
%% under the License.
%%
%% ---------------------------------------------------------------------
-module(riak_cs_policy).
-include("riak_cs.hrl").
-callback fetch_bucket_policy(binary(), pid()) -> {ok, policy()} | {error, term()}.
-callback bucket_policy(riakc_obj:riakc_obj()) -> {ok, policy()} | {error, term()}.
-callback eval(access(), policy() | undefined | binary() ) -> boolean() | undefined.
-callback check_policy(access(), policy()) -> ok | {error, atom()}.
-callback reqdata_to_access(RD :: term(), Target::atom(), ID::binary()|undefined) -> access().
-callback policy_from_json(JSON::binary()) -> {ok, policy()} | {error, term()}.
-callback policy_to_json_term(policy()) -> JSON::binary().