mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-05-05 12:16:13 +02:00
Converted all package.html files to package-info.java for easier package documentation.
This commit is contained in:
parent
931af4e616
commit
82e725763b
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* REST resources for the sample topology viewer application.
|
||||
*/
|
||||
package org.onlab.onos.tvue;
|
||||
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Administrative console command-line extensions for interacting with the
|
||||
* network model & services.
|
||||
*/
|
||||
package org.onlab.onos.cli.net;
|
||||
4
cli/src/main/java/org/onlab/onos/cli/package-info.java
Normal file
4
cli/src/main/java/org/onlab/onos/cli/package-info.java
Normal file
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Administrative console command-line extensions.
|
||||
*/
|
||||
package org.onlab.onos.cli;
|
||||
@ -1,4 +0,0 @@
|
||||
<body>
|
||||
Administrative console command-line extensions for interacting with the
|
||||
network model & services.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Administrative console command-line extensions.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Local event delivery subsystem interfaces & supporting abstractions.
|
||||
*/
|
||||
package org.onlab.onos.event;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Infrastructure device model & related services API definitions.
|
||||
*/
|
||||
package org.onlab.onos.net.device;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Flow rule model & related services API definitions.
|
||||
*/
|
||||
package org.onlab.onos.net.flow;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* End-station host model & related services API definitions.
|
||||
*/
|
||||
package org.onlab.onos.net.host;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Infrastructure link model & related services API definitions.
|
||||
*/
|
||||
package org.onlab.onos.net.link;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Network model entities & service API definitions.
|
||||
*/
|
||||
package org.onlab.onos.net;
|
||||
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Mechanism for processing inbound packets intercepted from the data plane and
|
||||
* for emitting outbound packets onto the data plane.
|
||||
*/
|
||||
package org.onlab.onos.net.packet;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Base abstractions related to network entity providers and their brokers.
|
||||
*/
|
||||
package org.onlab.onos.net.provider;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Network topology model & related services API definitions.
|
||||
*/
|
||||
package org.onlab.onos.net.topology;
|
||||
4
core/api/src/main/java/org/onlab/onos/package-info.java
Normal file
4
core/api/src/main/java/org/onlab/onos/package-info.java
Normal file
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* ONOS Core API definitions.
|
||||
*/
|
||||
package org.onlab.onos;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Local event delivery subsystem interfaces & supporting abstractions.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Infrastructure device model & related services API definitions.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Flow rule model & related services API definitions.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
End-station host model & related services API definitions.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Infrastructure link model & related services API definitions.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Network model entities & service API definitions.
|
||||
</body>
|
||||
@ -1,4 +0,0 @@
|
||||
<body>
|
||||
Mechanism for processing inbound packets intercepted from the data plane and
|
||||
for emitting outbound packets onto the data plane.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Base abstractions related to network entity providers and their brokers.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Network topology model & related services API definitions.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
ONOS Core API definitions.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Local event dispatching mechanism.
|
||||
*/
|
||||
package org.onlab.onos.event.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Core infrastructure implementations.
|
||||
*/
|
||||
package org.onlab.onos.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Core subsystem for tracking infrastructure devices.
|
||||
*/
|
||||
package org.onlab.onos.net.trivial.device.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Core subsystem for tracking edn-station hosts.
|
||||
*/
|
||||
package org.onlab.onos.net.trivial.host.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Core subsystem for tracking infrastructure links.
|
||||
*/
|
||||
package org.onlab.onos.net.trivial.link.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Core subsystem for processing inbound packets and emitting outbound packets.
|
||||
*/
|
||||
package org.onlab.onos.net.trivial.packet.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Core subsystem for tracking consistent topology graph views.
|
||||
*/
|
||||
package org.onlab.onos.net.trivial.topology.impl;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Local event dispatching mechanism.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Core infrastructure implementations.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Core subsystem for tracking infrastructure devices.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Core subsystem for tracking edn-station hosts.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Core subsystem for tracking infrastructure links.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Core subsystem for tracking consistent topology graph views.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* OpenFlow controller switch driver API.
|
||||
*/
|
||||
package org.onlab.onos.of.controller.driver;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* OpenFlow controller API.
|
||||
*/
|
||||
package org.onlab.onos.of.controller;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
OpenFlow controller switch driver API.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
OpenFlow controller API.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Controller logging annotations - do be deprecated.
|
||||
*/
|
||||
package org.onlab.onos.of.controller.impl.annotations;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Implementation of the OpenFlow controller IO subsystem.
|
||||
*/
|
||||
package org.onlab.onos.of.controller.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* OpenFlow base switch drivers implementations.
|
||||
*/
|
||||
package org.onlab.onos.of.drivers.impl;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Controller logging annotations - do be deprecated.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Implementation of the OpenFlow controller IO subsystem.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
OpenFlow base switch drivers implementations.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Provider that uses OpenFlow controller as a means of infrastructure device discovery.
|
||||
*/
|
||||
package org.onlab.onos.provider.of.device.impl;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Provider that uses OpenFlow controller as a means of infrastructure device discovery.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Provider that uses OpenFlow controller as a means of host discovery and tracking.
|
||||
*/
|
||||
package org.onlab.onos.provider.of.host.impl;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Provider that uses OpenFlow controller as a means of host discovery and tracking.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Provider that uses OpenFlow controller as a means of infrastructure link inference.
|
||||
*/
|
||||
package org.onlab.onos.provider.of.link.impl;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Provider that uses OpenFlow controller as a means of infrastructure link inference.
|
||||
</body>
|
||||
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Provider that uses OpenFlow controller as a means of intercepting and
|
||||
* emitting packets.
|
||||
*/
|
||||
package org.onlab.onos.provider.of.packet.impl;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Utilities to assist in developing JUnit tests.
|
||||
*/
|
||||
package org.onlab.junit;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Utilities to assist in developing JUnit tests.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Graph abstractions and graph path finding algorithms.
|
||||
*/
|
||||
package org.onlab.graph;
|
||||
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* Utilities for decoding and encoding packets of various network protocols
|
||||
* and encapsulations.
|
||||
*/
|
||||
package org.onlab.packet;
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Miscellaneous domain-agnostic utilities.
|
||||
*/
|
||||
package org.onlab.util;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Graph abstractions and graph path finding algorithms.
|
||||
</body>
|
||||
@ -1,4 +0,0 @@
|
||||
<body>
|
||||
Utilities for decoding and encoding packets of various network protocols
|
||||
and encapsulations.
|
||||
</body>
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Miscellaneous domain-agnostic utilities.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Facilities for building testable components in OSGi independent fashion.
|
||||
*/
|
||||
package org.onlab.osgi;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Facilities for building testable components in OSGi independent fashion.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Facilities for building JAX-RS web resources.
|
||||
*/
|
||||
package org.onlab.rest;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Facilities for building JAX-RS web resources.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Set of resources implementing the ONOS REST API.
|
||||
*/
|
||||
package org.onlab.onos.rest;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Set of resources implementing the ONOS REST API.
|
||||
</body>
|
||||
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Set of resources providing data for the ONOS GUI.
|
||||
*/
|
||||
package org.onlab.onos.gui;
|
||||
@ -1,3 +0,0 @@
|
||||
<body>
|
||||
Set of resources providing data for the ONOS GUI.
|
||||
</body>
|
||||
Loading…
x
Reference in New Issue
Block a user