blob: 32c36c51f279d262c058e0b891a7508d234f428e [file] [log] [blame]
tom53efab52014-10-07 17:43:48 -07001package org.onlab.onos;
2
3/**
4 * Service for interacting with the core system of the controller.
5 */
6public interface CoreService {
7
8 /**
9 * Returns the product version.
10 *
11 * @return product version
12 */
13 Version version();
14
15}