Lines Matching full:policy
10 * @class Policy
14 class Policy class
17 Policy() = delete;
18 virtual ~Policy() = default;
19 Policy(const Policy&) = default;
20 Policy& operator=(const Policy&) = delete;
21 Policy(Policy&&) = delete;
22 Policy& operator=(Policy&&) = delete;
29 explicit Policy(const DataInterfaceBase& dataIface) : _dataIface(dataIface) in Policy() function in openpower::pels::service_indicators::Policy
50 * This class implements the 'LightPath' IBM policy for
56 class LightPath : public Policy
71 explicit LightPath(const DataInterfaceBase& dataIface) : Policy(dataIface) in LightPath()
155 * @brief Checks if the callout priority is one that the policy
182 * @brief Returns the object for the service indicator policy
187 * @return std::unique_ptr<Policy> - The policy object
190 std::unique_ptr<Policy> getPolicy(const DataInterfaceBase& dataIface);