modelgbp Generated OpFlex Model  1.7.0
DomainToGbpRoutingDomainRSrc.hpp
1 
10 #pragma once
11 #ifndef GI_DCI_DOMAINTOGBPROUTINGDOMAINRSRC_HPP
12 #define GI_DCI_DOMAINTOGBPROUTINGDOMAINRSRC_HPP
13 
14 #include <boost/optional.hpp>
15 #include "opflex/modb/URIBuilder.h"
16 #include "opflex/modb/mo-internal/MO.h"
17 
18 namespace modelgbp {
19 namespace dci {
20 
22  : public opflex::modb::mointernal::MO
23 {
24 public:
25 
29  static const opflex::modb::class_id_t CLASS_ID = 88;
30 
35  bool isRoleSet()
36  {
37  return getObjectInstance().isSet(2883586ul, opflex::modb::PropertyInfo::ENUM8);
38  }
39 
44  boost::optional<const uint8_t> getRole()
45  {
46  if (isRoleSet())
47  return (const uint8_t)getObjectInstance().getUInt64(2883586ul);
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(2883586ul, newValue);
72  return *this;
73  }
74 
82  {
83  getTLMutator().modify(getClassId(), getURI())->unset(2883586ul, opflex::modb::PropertyInfo::ENUM8, opflex::modb::PropertyInfo::SCALAR);
84  return *this;
85  }
86 
91  bool isTargetSet()
92  {
93  return getObjectInstance().isSet(2883587ul, opflex::modb::PropertyInfo::REFERENCE);
94  }
95 
100  boost::optional<opflex::modb::class_id_t> getTargetClass()
101  {
102  if (isTargetSet())
103  return getObjectInstance().getReference(2883587ul).first;
104  return boost::none;
105  }
106 
111  boost::optional<opflex::modb::URI> getTargetURI()
112  {
113  if (isTargetSet())
114  return getObjectInstance().getReference(2883587ul).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(2883587ul, 190, uri);
150  return *this;
151  }
152 
171  const std::string& policySpaceName,
172  const std::string& gbpRoutingDomainName)
173  {
174  getTLMutator().modify(getClassId(), getURI())->setReference(2883587ul, 190, opflex::modb::URIBuilder().addElement("PolicyUniverse").addElement("PolicySpace").addElement(policySpaceName).addElement("GbpRoutingDomain").addElement(gbpRoutingDomainName).build());
175  return *this;
176  }
177 
185  {
186  getTLMutator().modify(getClassId(), getURI())->unset(2883587ul, opflex::modb::PropertyInfo::REFERENCE, opflex::modb::PropertyInfo::SCALAR);
187  return *this;
188  }
189 
194  bool isTypeSet()
195  {
196  return getObjectInstance().isSet(2883585ul, opflex::modb::PropertyInfo::ENUM8);
197  }
198 
203  boost::optional<const uint8_t> getType()
204  {
205  if (isTypeSet())
206  return (const uint8_t)getObjectInstance().getUInt64(2883585ul);
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(2883585ul, newValue);
231  return *this;
232  }
233 
241  {
242  getTLMutator().modify(getClassId(), getURI())->unset(2883585ul, opflex::modb::PropertyInfo::ENUM8, opflex::modb::PropertyInfo::SCALAR);
243  return *this;
244  }
245 
257  static boost::optional<OF_SHARED_PTR<modelgbp::dci::DomainToGbpRoutingDomainRSrc> > resolve(
258  opflex::ofcore::OFFramework& framework,
259  const opflex::modb::URI& uri)
260  {
261  return opflex::modb::mointernal::MO::resolve<modelgbp::dci::DomainToGbpRoutingDomainRSrc>(framework, CLASS_ID, uri);
262  }
263 
275  static boost::optional<OF_SHARED_PTR<modelgbp::dci::DomainToGbpRoutingDomainRSrc> > resolve(
276  const opflex::modb::URI& uri)
277  {
278  return opflex::modb::mointernal::MO::resolve<modelgbp::dci::DomainToGbpRoutingDomainRSrc>(opflex::ofcore::OFFramework::defaultInstance(), CLASS_ID, uri);
279  }
280 
301  static boost::optional<OF_SHARED_PTR<modelgbp::dci::DomainToGbpRoutingDomainRSrc> > resolve(
302  opflex::ofcore::OFFramework& framework,
303  const std::string& dciDomainName,
304  uint16_t dciDomainToGbpRoutingDomainRSrcTargetClass,
305  const std::string& dciDomainToGbpRoutingDomainRSrcTargetName)
306  {
307  return resolve(framework,opflex::modb::URIBuilder().addElement("DciUniverse").addElement("DciDomain").addElement(dciDomainName).addElement("DciDomainToGbpRoutingDomainRSrc").addElement(dciDomainToGbpRoutingDomainRSrcTargetClass).addElement(dciDomainToGbpRoutingDomainRSrcTargetName).build());
308  }
309 
329  static boost::optional<OF_SHARED_PTR<modelgbp::dci::DomainToGbpRoutingDomainRSrc> > resolve(
330  const std::string& dciDomainName,
331  uint16_t dciDomainToGbpRoutingDomainRSrcTargetClass,
332  const std::string& dciDomainToGbpRoutingDomainRSrcTargetName)
333  {
334  return resolve(opflex::ofcore::OFFramework::defaultInstance(),dciDomainName,dciDomainToGbpRoutingDomainRSrcTargetClass,dciDomainToGbpRoutingDomainRSrcTargetName);
335  }
336 
345  void remove()
346  {
347  getTLMutator().remove(CLASS_ID, getURI());
348  }
349 
360  static void remove(opflex::ofcore::OFFramework& framework,
361  const opflex::modb::URI& uri)
362  {
363  MO::remove(framework, CLASS_ID, uri);
364  }
365 
376  static void remove(const opflex::modb::URI& uri)
377  {
378  remove(opflex::ofcore::OFFramework::defaultInstance(), uri);
379  }
380 
399  static void remove(
400  opflex::ofcore::OFFramework& framework,
401  const std::string& dciDomainName,
402  uint16_t dciDomainToGbpRoutingDomainRSrcTargetClass,
403  const std::string& dciDomainToGbpRoutingDomainRSrcTargetName)
404  {
405  MO::remove(framework, CLASS_ID, opflex::modb::URIBuilder().addElement("DciUniverse").addElement("DciDomain").addElement(dciDomainName).addElement("DciDomainToGbpRoutingDomainRSrc").addElement(dciDomainToGbpRoutingDomainRSrcTargetClass).addElement(dciDomainToGbpRoutingDomainRSrcTargetName).build());
406  }
407 
426  static void remove(
427  const std::string& dciDomainName,
428  uint16_t dciDomainToGbpRoutingDomainRSrcTargetClass,
429  const std::string& dciDomainToGbpRoutingDomainRSrcTargetName)
430  {
431  remove(opflex::ofcore::OFFramework::defaultInstance(),dciDomainName,dciDomainToGbpRoutingDomainRSrcTargetClass,dciDomainToGbpRoutingDomainRSrcTargetName);
432  }
433 
445  static void registerListener(
446  opflex::ofcore::OFFramework& framework,
447  opflex::modb::ObjectListener* listener)
448  {
449  opflex::modb::mointernal
450  ::MO::registerListener(framework, listener, CLASS_ID);
451  }
452 
464  static void registerListener(
465  opflex::modb::ObjectListener* listener)
466  {
467  registerListener(opflex::ofcore::OFFramework::defaultInstance(), listener);
468  }
469 
476  static void unregisterListener(
477  opflex::ofcore::OFFramework& framework,
478  opflex::modb::ObjectListener* listener)
479  {
480  opflex::modb::mointernal
481  ::MO::unregisterListener(framework, listener, CLASS_ID);
482  }
483 
490  static void unregisterListener(
491  opflex::modb::ObjectListener* listener)
492  {
493  unregisterListener(opflex::ofcore::OFFramework::defaultInstance(), listener);
494  }
495 
501  opflex::ofcore::OFFramework& framework,
502  const opflex::modb::URI& uri,
503  const OF_SHARED_PTR<const opflex::modb::mointernal::ObjectInstance>& oi)
504  : MO(framework, CLASS_ID, uri, oi) { }
505 }; // class DomainToGbpRoutingDomainRSrc
506 
507 } // namespace dci
508 } // namespace modelgbp
509 #endif // GI_DCI_DOMAINTOGBPROUTINGDOMAINRSRC_HPP
bool isRoleSet()
Check whether role has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:35
modelgbp::dci::DomainToGbpRoutingDomainRSrc & setTargetRoutingDomain(const opflex::modb::URI &uri)
Set the reference to point to an instance of RoutingDomain with the specified URI.
Definition: DomainToGbpRoutingDomainRSrc.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: DomainToGbpRoutingDomainRSrc.hpp:133
static boost::optional< OF_SHARED_PTR< modelgbp::dci::DomainToGbpRoutingDomainRSrc > > resolve(opflex::ofcore::OFFramework &framework, const opflex::modb::URI &uri)
Retrieve an instance of DomainToGbpRoutingDomainRSrc from the managed object store.
Definition: DomainToGbpRoutingDomainRSrc.hpp:257
modelgbp::dci::DomainToGbpRoutingDomainRSrc & unsetTarget()
Unset target in the currently-active mutator.
Definition: DomainToGbpRoutingDomainRSrc.hpp:184
static boost::optional< OF_SHARED_PTR< modelgbp::dci::DomainToGbpRoutingDomainRSrc > > resolve(const opflex::modb::URI &uri)
Retrieve an instance of DomainToGbpRoutingDomainRSrc from the managed object store using the default ...
Definition: DomainToGbpRoutingDomainRSrc.hpp:275
boost::optional< opflex::modb::URI > getTargetURI()
Get the value of targetURI if it has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:111
modelgbp::dci::DomainToGbpRoutingDomainRSrc & setType(const uint8_t newValue)
Set type to the specified value in the currently-active mutator.
Definition: DomainToGbpRoutingDomainRSrc.hpp:228
DomainToGbpRoutingDomainRSrc(opflex::ofcore::OFFramework &framework, const opflex::modb::URI &uri, const OF_SHARED_PTR< const opflex::modb::mointernal::ObjectInstance > &oi)
Construct an instance of DomainToGbpRoutingDomainRSrc.
Definition: DomainToGbpRoutingDomainRSrc.hpp:500
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: DomainToGbpRoutingDomainRSrc.hpp:445
modelgbp::dci::DomainToGbpRoutingDomainRSrc & unsetRole()
Unset role in the currently-active mutator.
Definition: DomainToGbpRoutingDomainRSrc.hpp:81
modelgbp::dci::DomainToGbpRoutingDomainRSrc & setRole(const uint8_t newValue)
Set role to the specified value in the currently-active mutator.
Definition: DomainToGbpRoutingDomainRSrc.hpp:69
boost::optional< const uint8_t > getType()
Get the value of type if it has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:203
const uint8_t getType(const uint8_t defaultValue)
Get the value of type if set, otherwise the value of default passed in.
Definition: DomainToGbpRoutingDomainRSrc.hpp:215
static boost::optional< OF_SHARED_PTR< modelgbp::dci::DomainToGbpRoutingDomainRSrc > > resolve(opflex::ofcore::OFFramework &framework, const std::string &dciDomainName, uint16_t dciDomainToGbpRoutingDomainRSrcTargetClass, const std::string &dciDomainToGbpRoutingDomainRSrcTargetName)
Retrieve an instance of DomainToGbpRoutingDomainRSrc from the managed object store by constructing it...
Definition: DomainToGbpRoutingDomainRSrc.hpp:301
static void unregisterListener(opflex::ofcore::OFFramework &framework, opflex::modb::ObjectListener *listener)
Unregister a listener from updates to this class.
Definition: DomainToGbpRoutingDomainRSrc.hpp:476
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: DomainToGbpRoutingDomainRSrc.hpp:464
modelgbp::dci::DomainToGbpRoutingDomainRSrc & unsetType()
Unset type in the currently-active mutator.
Definition: DomainToGbpRoutingDomainRSrc.hpp:240
boost::optional< const uint8_t > getRole()
Get the value of role if it has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:44
bool isTypeSet()
Check whether type has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:194
static const opflex::modb::class_id_t CLASS_ID
The unique class ID for DomainToGbpRoutingDomainRSrc.
Definition: DomainToGbpRoutingDomainRSrc.hpp:29
static boost::optional< OF_SHARED_PTR< modelgbp::dci::DomainToGbpRoutingDomainRSrc > > resolve(const std::string &dciDomainName, uint16_t dciDomainToGbpRoutingDomainRSrcTargetClass, const std::string &dciDomainToGbpRoutingDomainRSrcTargetName)
Retrieve an instance of DomainToGbpRoutingDomainRSrc from the default managed object store by constru...
Definition: DomainToGbpRoutingDomainRSrc.hpp:329
boost::optional< opflex::modb::class_id_t > getTargetClass()
Get the value of targetClass if it has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:100
Definition: DomainToGbpRoutingDomainRSrc.hpp:21
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: DomainToGbpRoutingDomainRSrc.hpp:123
const uint8_t getRole(const uint8_t defaultValue)
Get the value of role if set, otherwise the value of default passed in.
Definition: DomainToGbpRoutingDomainRSrc.hpp:56
static void unregisterListener(opflex::modb::ObjectListener *listener)
Unregister a listener from updates to this class from the default framework instance.
Definition: DomainToGbpRoutingDomainRSrc.hpp:490
bool isTargetSet()
Check whether target has been set.
Definition: DomainToGbpRoutingDomainRSrc.hpp:91
modelgbp::dci::DomainToGbpRoutingDomainRSrc & setTargetRoutingDomain(const std::string &policySpaceName, const std::string &gbpRoutingDomainName)
Set the reference to point to an instance of RoutingDomain in the currently-active mutator by constru...
Definition: DomainToGbpRoutingDomainRSrc.hpp:170