Versions Compared

Key

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

...

This tutorial will step you through the process of creating an application that does just that - injects a tabular view into the ONOS GUI.

A fictitious company, "Meowster, Inc." is used throughout the examples. This tutorial assumes you have created a top level directory and changed into it:

Code Block
$ mkdir meow
$ cd meow

 

Application Set Up

Setting up the application is exactly follows the same process as for the Custom View tutorial, with one minor difference: the choice of archetype in step (2) should be uitab instead of ui:

...

just a few minor differences.

(0) Create a working directory

Code Block
$ mkdir table
$ cd table

 

(1) Create the main application 

Code Block
$ onos-create-app app org.meowster.app.table meowster-table

When asked for the version, accept the suggested default: 1.0-SNAPSHOT, and press enter.

When asked to confirm the properties configuration, press enter.

Code Block
groupId: org.meowster.app.table
artifactId: meowster-table
version: 1.0-SNAPSHOT
package: org.meowster.app.table

 

 

 

the choice of archetype in step (2) should be uitab instead of ui:

 

(2) Overlay the UI additional components

...