1 /*
2  * Copyright (c) 2024 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef I_NET_FIREWALL_H
17 #define I_NET_FIREWALL_H
18 
19 #include "iremote_broker.h"
20 #include "netfirewall_common.h"
21 
22 namespace OHOS {
23 namespace NetManagerStandard {
24 class INetFirewallService : public IRemoteBroker {
25 public:
26     virtual int32_t SetNetFirewallPolicy(const int32_t userId, const sptr<NetFirewallPolicy> &status) = 0;
27 
28     virtual int32_t GetNetFirewallPolicy(const int32_t userId, sptr<NetFirewallPolicy> &status) = 0;
29 
30     virtual int32_t AddNetFirewallRule(const sptr<NetFirewallRule> &rule, int32_t &result) = 0;
31 
32     virtual int32_t UpdateNetFirewallRule(const sptr<NetFirewallRule> &rule) = 0;
33 
34     virtual int32_t DeleteNetFirewallRule(const int32_t userId, const int32_t ruleId) = 0;
35 
36     virtual int32_t GetNetFirewallRules(const int32_t userId, const sptr<RequestParam> &requestParam,
37         sptr<FirewallRulePage> &info) = 0;
38 
39     virtual int32_t GetNetFirewallRule(const int32_t userId, const int32_t ruleId, sptr<NetFirewallRule> &rule) = 0;
40 
41     virtual int32_t GetInterceptRecords(const int32_t userId, const sptr<RequestParam> &requestParam,
42         sptr<InterceptRecordPage> &info) = 0;
43 
44     enum {
45         SET_NET_FIREWALL_STATUS,
46         GET_NET_FIREWALL_STATUS,
47         ADD_NET_FIREWALL_RULE,
48         UPDATE_NET_FIREWALL_RULE,
49         DELETE_NET_FIREWALL_RULE,
50         GET_ALL_NET_FIREWALL_RULES,
51         GET_NET_FIREWALL_RULE,
52         GET_ALL_INTERCEPT_RECORDS
53     };
54     DECLARE_INTERFACE_DESCRIPTOR(u"OHOS.NetManagerStandard.INetFirewallService");
55 };
56 } // namespace NetManagerStandard
57 } // namespace OHOS
58 #endif /* I_NET_FIREWALL_H */
59