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 NET_FIREWALL_PROXY_H
17#define NET_FIREWALL_PROXY_H
18
19#include "i_netfirewall_service.h"
20#include "iremote_broker.h"
21#include "iremote_proxy.h"
22#include "refbase.h"
23
24namespace OHOS {
25namespace NetManagerStandard {
26class NetFirewallProxy : public IRemoteProxy<INetFirewallService> {
27public:
28    int32_t SetNetFirewallPolicy(const int32_t userId, const sptr<NetFirewallPolicy> &status) override;
29
30    int32_t GetNetFirewallPolicy(const int32_t userId, sptr<NetFirewallPolicy> &status) override;
31
32    int32_t AddNetFirewallRule(const sptr<NetFirewallRule> &rule, int32_t &result) override;
33
34    int32_t UpdateNetFirewallRule(const sptr<NetFirewallRule> &rule) override;
35
36    int32_t DeleteNetFirewallRule(const int32_t userId, const int32_t ruleId) override;
37
38    int32_t GetNetFirewallRules(const int32_t userId, const sptr<RequestParam> &requestParam,
39        sptr<FirewallRulePage> &info) override;
40
41    int32_t GetNetFirewallRule(const int32_t userId, const int32_t ruleId, sptr<NetFirewallRule> &rule) override;
42
43    int32_t GetInterceptRecords(const int32_t userId, const sptr<RequestParam> &requestParam,
44        sptr<InterceptRecordPage> &info) override;
45
46    explicit NetFirewallProxy(const sptr<IRemoteObject> &impl) : IRemoteProxy<INetFirewallService>(impl) {}
47    ~NetFirewallProxy() = default;
48
49private:
50    static inline BrokerDelegator<NetFirewallProxy> delegator_;
51};
52} // namespace NetManagerStandard
53} // namespace OHOS
54#endif /* NET_FIREWALL_PROXY_H */
55