modelgbp Generated OpFlex Model 1.7.0
MappingRuleToGroupRSrc.hpp
1
10#pragma once
11#ifndef GI_GBPE_MAPPINGRULETOGROUPRSRC_HPP
12#define GI_GBPE_MAPPINGRULETOGROUPRSRC_HPP
13
14#include <boost/optional.hpp>
15#include "opflex/modb/URIBuilder.h"
16#include "opflex/modb/mo-internal/MO.h"
17
18namespace modelgbp {
19namespace gbpe {
20
22 : public opflex::modb::mointernal::MO
23{
24public:
25
29 static const opflex::modb::class_id_t CLASS_ID = 30;
30
35 bool isRoleSet()
36 {
37 return getObjectInstance().isSet(983042ul, opflex::modb::PropertyInfo::ENUM8);
38 }
39
44 boost::optional<const uint8_t> getRole()
45 {
46 if (isRoleSet())
47 return (const uint8_t)getObjectInstance().getUInt64(983042ul);
48 return boost::none;
49 }
50
56 const uint8_t getRole(const uint8_t defaultValue)
57 {
58 return getRole().get_value_or(defaultValue);
59 }
60
70 {
71 getTLMutator().modify(getClassId(), getURI())->setUInt64(983042ul, newValue);
72 return *this;
73 }
74
82 {
83 getTLMutator().modify(getClassId(), getURI())->unset(983042ul, opflex::modb::PropertyInfo::ENUM8, opflex::modb::PropertyInfo::SCALAR);
84 return *this;
85 }
86
92 {
93 return getObjectInstance().isSet(983043ul, opflex::modb::PropertyInfo::REFERENCE);
94 }
95
100 boost::optional<opflex::modb::class_id_t> getTargetClass()
101 {
102 if (isTargetSet())
103 return getObjectInstance().getReference(983043ul).first;
104 return boost::none;
105 }
106
111 boost::optional<opflex::modb::URI> getTargetURI()
112 {
113 if (isTargetSet())
114 return getObjectInstance().getReference(983043ul).second;
115 return boost::none;
116 }
117
123 opflex::modb::class_id_t getTargetClass(opflex::modb::class_id_t defaultValue)
124 {
125 return getTargetClass().get_value_or(defaultValue);
126 }
127
133 opflex::modb::URI getTargetURI(opflex::modb::URI defaultValue)
134 {
135 return getTargetURI().get_value_or(defaultValue);
136 }
137
148 {
149 getTLMutator().modify(getClassId(), getURI())->setReference(983043ul, 152, uri);
150 return *this;
151 }
152
171 const std::string& policySpaceName,
172 const std::string& gbpEpGroupName)
173 {
174 getTLMutator().modify(getClassId(), getURI())->setReference(983043ul, 152, opflex::modb::URIBuilder().addElement("PolicyUniverse").addElement("PolicySpace").addElement(policySpaceName).addElement("GbpEpGroup").addElement(gbpEpGroupName).build());
175 return *this;
176 }
177
185 {
186 getTLMutator().modify(getClassId(), getURI())->unset(983043ul, opflex::modb::PropertyInfo::REFERENCE, opflex::modb::PropertyInfo::SCALAR);
187 return *this;
188 }
189
195 {
196 return getObjectInstance().isSet(983041ul, opflex::modb::PropertyInfo::ENUM8);
197 }
198
203 boost::optional<const uint8_t> getType()
204 {
205 if (isTypeSet())
206 return (const uint8_t)getObjectInstance().getUInt64(983041ul);
207 return boost::none;
208 }
209
215 const uint8_t getType(const uint8_t defaultValue)
216 {
217 return getType().get_value_or(defaultValue);
218 }
219
229 {
230 getTLMutator().modify(getClassId(), getURI())->setUInt64(983041ul, newValue);
231 return *this;
232 }
233
241 {
242 getTLMutator().modify(getClassId(), getURI())->unset(983041ul, opflex::modb::PropertyInfo::ENUM8, opflex::modb::PropertyInfo::SCALAR);
243 return *this;
244 }
245
257 static boost::optional<OF_SHARED_PTR<modelgbp::gbpe::MappingRuleToGroupRSrc> > resolve(
258 opflex::ofcore::OFFramework& framework,
259 const opflex::modb::URI& uri)
260 {
261 return opflex::modb::mointernal::MO::resolve<modelgbp::gbpe::MappingRuleToGroupRSrc>(framework, CLASS_ID, uri);
262 }
263
275 static boost::optional<OF_SHARED_PTR<modelgbp::gbpe::MappingRuleToGroupRSrc> > resolve(
276 const opflex::modb::URI& uri)
277 {
278 return opflex::modb::mointernal::MO::resolve<modelgbp::gbpe::MappingRuleToGroupRSrc>(opflex::ofcore::OFFramework::defaultInstance(), CLASS_ID, uri);
279 }
280
299 static boost::optional<OF_SHARED_PTR<modelgbp::gbpe::MappingRuleToGroupRSrc> > resolveUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(
300 opflex::ofcore::OFFramework& framework,
301 const std::string& gbpeEpgMappingName,
302 const std::string& gbpeAttributeMappingRuleName)
303 {
304 return resolve(framework,opflex::modb::URIBuilder().addElement("PolicyUniverse").addElement("GbpeEpgMapping").addElement(gbpeEpgMappingName).addElement("GbpeAttributeMappingRule").addElement(gbpeAttributeMappingRuleName).addElement("GbpeMappingRuleToGroupRSrc").build());
305 }
306
324 static boost::optional<OF_SHARED_PTR<modelgbp::gbpe::MappingRuleToGroupRSrc> > resolveUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(
325 const std::string& gbpeEpgMappingName,
326 const std::string& gbpeAttributeMappingRuleName)
327 {
328 return resolveUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(opflex::ofcore::OFFramework::defaultInstance(),gbpeEpgMappingName,gbpeAttributeMappingRuleName);
329 }
330
349 static boost::optional<OF_SHARED_PTR<modelgbp::gbpe::MappingRuleToGroupRSrc> > resolveUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(
350 opflex::ofcore::OFFramework& framework,
351 const std::string& gbpeMappingRuleSetName,
352 const std::string& gbpeAttributeMappingRuleName)
353 {
354 return resolve(framework,opflex::modb::URIBuilder().addElement("PolicyUniverse").addElement("GbpeMappingRuleSet").addElement(gbpeMappingRuleSetName).addElement("GbpeAttributeMappingRule").addElement(gbpeAttributeMappingRuleName).addElement("GbpeMappingRuleToGroupRSrc").build());
355 }
356
374 static boost::optional<OF_SHARED_PTR<modelgbp::gbpe::MappingRuleToGroupRSrc> > resolveUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(
375 const std::string& gbpeMappingRuleSetName,
376 const std::string& gbpeAttributeMappingRuleName)
377 {
378 return resolveUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(opflex::ofcore::OFFramework::defaultInstance(),gbpeMappingRuleSetName,gbpeAttributeMappingRuleName);
379 }
380
389 void remove()
390 {
391 getTLMutator().remove(CLASS_ID, getURI());
392 }
393
404 static void remove(opflex::ofcore::OFFramework& framework,
405 const opflex::modb::URI& uri)
406 {
407 MO::remove(framework, CLASS_ID, uri);
408 }
409
420 static void remove(const opflex::modb::URI& uri)
421 {
422 remove(opflex::ofcore::OFFramework::defaultInstance(), uri);
423 }
424
442 opflex::ofcore::OFFramework& framework,
443 const std::string& gbpeEpgMappingName,
444 const std::string& gbpeAttributeMappingRuleName)
445 {
446 MO::remove(framework, CLASS_ID, opflex::modb::URIBuilder().addElement("PolicyUniverse").addElement("GbpeEpgMapping").addElement(gbpeEpgMappingName).addElement("GbpeAttributeMappingRule").addElement(gbpeAttributeMappingRuleName).addElement("GbpeMappingRuleToGroupRSrc").build());
447 }
448
466 const std::string& gbpeEpgMappingName,
467 const std::string& gbpeAttributeMappingRuleName)
468 {
469 removeUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(opflex::ofcore::OFFramework::defaultInstance(),gbpeEpgMappingName,gbpeAttributeMappingRuleName);
470 }
471
489 opflex::ofcore::OFFramework& framework,
490 const std::string& gbpeMappingRuleSetName,
491 const std::string& gbpeAttributeMappingRuleName)
492 {
493 MO::remove(framework, CLASS_ID, opflex::modb::URIBuilder().addElement("PolicyUniverse").addElement("GbpeMappingRuleSet").addElement(gbpeMappingRuleSetName).addElement("GbpeAttributeMappingRule").addElement(gbpeAttributeMappingRuleName).addElement("GbpeMappingRuleToGroupRSrc").build());
494 }
495
513 const std::string& gbpeMappingRuleSetName,
514 const std::string& gbpeAttributeMappingRuleName)
515 {
516 removeUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(opflex::ofcore::OFFramework::defaultInstance(),gbpeMappingRuleSetName,gbpeAttributeMappingRuleName);
517 }
518
530 static void registerListener(
531 opflex::ofcore::OFFramework& framework,
532 opflex::modb::ObjectListener* listener)
533 {
534 opflex::modb::mointernal
535 ::MO::registerListener(framework, listener, CLASS_ID);
536 }
537
549 static void registerListener(
550 opflex::modb::ObjectListener* listener)
551 {
552 registerListener(opflex::ofcore::OFFramework::defaultInstance(), listener);
553 }
554
562 opflex::ofcore::OFFramework& framework,
563 opflex::modb::ObjectListener* listener)
564 {
565 opflex::modb::mointernal
566 ::MO::unregisterListener(framework, listener, CLASS_ID);
567 }
568
576 opflex::modb::ObjectListener* listener)
577 {
578 unregisterListener(opflex::ofcore::OFFramework::defaultInstance(), listener);
579 }
580
586 opflex::ofcore::OFFramework& framework,
587 const opflex::modb::URI& uri,
588 const OF_SHARED_PTR<const opflex::modb::mointernal::ObjectInstance>& oi)
589 : MO(framework, CLASS_ID, uri, oi) { }
590}; // class MappingRuleToGroupRSrc
591
592} // namespace gbpe
593} // namespace modelgbp
594#endif // GI_GBPE_MAPPINGRULETOGROUPRSRC_HPP
Definition MappingRuleToGroupRSrc.hpp:23
static const opflex::modb::class_id_t CLASS_ID
The unique class ID for MappingRuleToGroupRSrc.
Definition MappingRuleToGroupRSrc.hpp:29
modelgbp::gbpe::MappingRuleToGroupRSrc & setRole(const uint8_t newValue)
Set role to the specified value in the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:69
static void removeUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(const std::string &gbpeMappingRuleSetName, const std::string &gbpeAttributeMappingRuleName)
Remove the MappingRuleToGroupRSrc object with the specified path elements from the managed object sto...
Definition MappingRuleToGroupRSrc.hpp:512
static void removeUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(opflex::ofcore::OFFramework &framework, const std::string &gbpeEpgMappingName, const std::string &gbpeAttributeMappingRuleName)
Remove the MappingRuleToGroupRSrc object with the specified path elements from the managed object sto...
Definition MappingRuleToGroupRSrc.hpp:441
static boost::optional< OF_SHARED_PTR< modelgbp::gbpe::MappingRuleToGroupRSrc > > resolveUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(opflex::ofcore::OFFramework &framework, const std::string &gbpeMappingRuleSetName, const std::string &gbpeAttributeMappingRuleName)
Retrieve an instance of MappingRuleToGroupRSrc from the managed object store by constructing its URI ...
Definition MappingRuleToGroupRSrc.hpp:349
static void remove(const opflex::modb::URI &uri)
Remove the MappingRuleToGroupRSrc object with the specified URI using the currently-active mutator an...
Definition MappingRuleToGroupRSrc.hpp:420
modelgbp::gbpe::MappingRuleToGroupRSrc & unsetType()
Unset type in the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:240
static void remove(opflex::ofcore::OFFramework &framework, const opflex::modb::URI &uri)
Remove the MappingRuleToGroupRSrc object with the specified URI using the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:404
bool isTargetSet()
Check whether target has been set.
Definition MappingRuleToGroupRSrc.hpp:91
void remove()
Remove this instance using the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:389
static void unregisterListener(opflex::modb::ObjectListener *listener)
Unregister a listener from updates to this class from the default framework instance.
Definition MappingRuleToGroupRSrc.hpp:575
boost::optional< const uint8_t > getRole()
Get the value of role if it has been set.
Definition MappingRuleToGroupRSrc.hpp:44
boost::optional< opflex::modb::URI > getTargetURI()
Get the value of targetURI if it has been set.
Definition MappingRuleToGroupRSrc.hpp:111
static boost::optional< OF_SHARED_PTR< modelgbp::gbpe::MappingRuleToGroupRSrc > > resolve(const opflex::modb::URI &uri)
Retrieve an instance of MappingRuleToGroupRSrc from the managed object store using the default framew...
Definition MappingRuleToGroupRSrc.hpp:275
static void registerListener(opflex::modb::ObjectListener *listener)
Register a listener that will get called for changes related to this class with the default framework...
Definition MappingRuleToGroupRSrc.hpp:549
const uint8_t getRole(const uint8_t defaultValue)
Get the value of role if set, otherwise the value of default passed in.
Definition MappingRuleToGroupRSrc.hpp:56
static void unregisterListener(opflex::ofcore::OFFramework &framework, opflex::modb::ObjectListener *listener)
Unregister a listener from updates to this class.
Definition MappingRuleToGroupRSrc.hpp:561
bool isRoleSet()
Check whether role has been set.
Definition MappingRuleToGroupRSrc.hpp:35
modelgbp::gbpe::MappingRuleToGroupRSrc & setTargetEpGroup(const opflex::modb::URI &uri)
Set the reference to point to an instance of EpGroup with the specified URI.
Definition MappingRuleToGroupRSrc.hpp:147
opflex::modb::URI getTargetURI(opflex::modb::URI defaultValue)
Get the value of targetURI if set, otherwise the value of default passed in.
Definition MappingRuleToGroupRSrc.hpp:133
modelgbp::gbpe::MappingRuleToGroupRSrc & setTargetEpGroup(const std::string &policySpaceName, const std::string &gbpEpGroupName)
Set the reference to point to an instance of EpGroup in the currently-active mutator by constructing ...
Definition MappingRuleToGroupRSrc.hpp:170
modelgbp::gbpe::MappingRuleToGroupRSrc & unsetTarget()
Unset target in the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:184
boost::optional< opflex::modb::class_id_t > getTargetClass()
Get the value of targetClass if it has been set.
Definition MappingRuleToGroupRSrc.hpp:100
opflex::modb::class_id_t getTargetClass(opflex::modb::class_id_t defaultValue)
Get the value of targetClass if set, otherwise the value of default passed in.
Definition MappingRuleToGroupRSrc.hpp:123
static boost::optional< OF_SHARED_PTR< modelgbp::gbpe::MappingRuleToGroupRSrc > > resolveUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(opflex::ofcore::OFFramework &framework, const std::string &gbpeEpgMappingName, const std::string &gbpeAttributeMappingRuleName)
Retrieve an instance of MappingRuleToGroupRSrc from the managed object store by constructing its URI ...
Definition MappingRuleToGroupRSrc.hpp:299
MappingRuleToGroupRSrc(opflex::ofcore::OFFramework &framework, const opflex::modb::URI &uri, const OF_SHARED_PTR< const opflex::modb::mointernal::ObjectInstance > &oi)
Construct an instance of MappingRuleToGroupRSrc.
Definition MappingRuleToGroupRSrc.hpp:585
static boost::optional< OF_SHARED_PTR< modelgbp::gbpe::MappingRuleToGroupRSrc > > resolveUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(const std::string &gbpeEpgMappingName, const std::string &gbpeAttributeMappingRuleName)
Retrieve an instance of MappingRuleToGroupRSrc from the default managed object store by constructing ...
Definition MappingRuleToGroupRSrc.hpp:324
static void registerListener(opflex::ofcore::OFFramework &framework, opflex::modb::ObjectListener *listener)
Register a listener that will get called for changes related to this class.
Definition MappingRuleToGroupRSrc.hpp:530
static void removeUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(opflex::ofcore::OFFramework &framework, const std::string &gbpeMappingRuleSetName, const std::string &gbpeAttributeMappingRuleName)
Remove the MappingRuleToGroupRSrc object with the specified path elements from the managed object sto...
Definition MappingRuleToGroupRSrc.hpp:488
bool isTypeSet()
Check whether type has been set.
Definition MappingRuleToGroupRSrc.hpp:194
const uint8_t getType(const uint8_t defaultValue)
Get the value of type if set, otherwise the value of default passed in.
Definition MappingRuleToGroupRSrc.hpp:215
static boost::optional< OF_SHARED_PTR< modelgbp::gbpe::MappingRuleToGroupRSrc > > resolveUnderPolicyUniverseGbpeMappingRuleSetGbpeAttributeMappingRule(const std::string &gbpeMappingRuleSetName, const std::string &gbpeAttributeMappingRuleName)
Retrieve an instance of MappingRuleToGroupRSrc from the default managed object store by constructing ...
Definition MappingRuleToGroupRSrc.hpp:374
static boost::optional< OF_SHARED_PTR< modelgbp::gbpe::MappingRuleToGroupRSrc > > resolve(opflex::ofcore::OFFramework &framework, const opflex::modb::URI &uri)
Retrieve an instance of MappingRuleToGroupRSrc from the managed object store.
Definition MappingRuleToGroupRSrc.hpp:257
boost::optional< const uint8_t > getType()
Get the value of type if it has been set.
Definition MappingRuleToGroupRSrc.hpp:203
static void removeUnderPolicyUniverseGbpeEpgMappingGbpeAttributeMappingRule(const std::string &gbpeEpgMappingName, const std::string &gbpeAttributeMappingRuleName)
Remove the MappingRuleToGroupRSrc object with the specified path elements from the managed object sto...
Definition MappingRuleToGroupRSrc.hpp:465
modelgbp::gbpe::MappingRuleToGroupRSrc & setType(const uint8_t newValue)
Set type to the specified value in the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:228
modelgbp::gbpe::MappingRuleToGroupRSrc & unsetRole()
Unset role in the currently-active mutator.
Definition MappingRuleToGroupRSrc.hpp:81
SOME COPYRIGHT.
Definition OpcodeEnumT.hpp:12