Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleUnregister the specified model with parameters specifying any addtional information provided by the applciation.
 void unregisterModel(ModelRegistrationParam param) 

Each model or application will have a unique identifier, which can be configured using buck or maven as shown below :

Code Block
languagexml
titleTo config mode-ld using maven
<configuration>
    <modelId>xml</modelId>
</configuration>
Code Block
languagebash
titleTo config model-Id using buck
yang_model(
    app_name = 'example.application',
    model_id = 'example_id'
)

In-case model-id is not configured then arctifact-Id will be configured as model-Id for that particular application. 

Runtime Service 

It is a service for encoding and decoding between internal and external model representation.

...