Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Sho SHIMIZU
2016-02-12 17:45:59 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
37a038b4ddff0264fbb537c12a7e50e211ff299e
37a038b4
1 parent
7343bfa2
Update Javadoc
Change-Id: Ieefd3650c1f11875d22602174a7bdf9537acf0d6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 additions
and
15 deletions
core/api/src/main/java/org/onosproject/net/newresource/ContinuousResource.java
core/api/src/main/java/org/onosproject/net/newresource/ContinuousResourceId.java
core/api/src/main/java/org/onosproject/net/newresource/DiscreteResource.java
core/api/src/main/java/org/onosproject/net/newresource/DiscreteResourceId.java
core/api/src/main/java/org/onosproject/net/newresource/ResourceId.java
core/api/src/main/java/org/onosproject/net/newresource/ContinuousResource.java
View file @
37a038b
...
...
@@ -26,9 +26,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
/**
* Represents a resource path which specifies a resource which can be measured
* as continuous value. Bandwidth of a link is an example of the resource.
* <p>
* Note: This class is exposed to the public, but intended to be used in the resource API
* implementation only. It is not for resource API user.
*/
@Beta
public
final
class
ContinuousResource
implements
Resource
{
...
...
core/api/src/main/java/org/onosproject/net/newresource/ContinuousResourceId.java
View file @
37a038b
...
...
@@ -22,10 +22,7 @@ import java.util.Objects;
import
java.util.Optional
;
/**
* ResourceId for {@link ContinuousResource}
*
* Note: This class is exposed to the public, but intended to be used in the resource API
* implementation only. It is not for resource API user.
* ResourceId for {@link ContinuousResource}.
*/
@Beta
public
final
class
ContinuousResourceId
extends
ResourceId
{
...
...
core/api/src/main/java/org/onosproject/net/newresource/DiscreteResource.java
View file @
37a038b
...
...
@@ -27,10 +27,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
/**
* Represents a resource path which specifies a resource which can be measured
* as a discrete unit. A VLAN ID and a MPLS label of a link are examples of the resource.
* <p>
* Note: This class is exposed to the public, but intended to be used in the resource API
* implementation only. It is not for resource API user.
* </p>
*/
@Beta
public
final
class
DiscreteResource
implements
Resource
{
...
...
core/api/src/main/java/org/onosproject/net/newresource/DiscreteResourceId.java
View file @
37a038b
...
...
@@ -26,9 +26,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
/**
* ResourceId for {@link DiscreteResource}.
*
* Note: This class is exposed to the public, but intended to be used in the resource API
* implementation only. It is not for resource API user.
*/
@Beta
public
final
class
DiscreteResourceId
extends
ResourceId
{
...
...
core/api/src/main/java/org/onosproject/net/newresource/ResourceId.java
View file @
37a038b
...
...
@@ -22,7 +22,6 @@ import java.util.Optional;
/**
* Represents identifier of resource.
* This class is exposed to public, but intended to use only in ResourceStore implementations.
*/
@Beta
public
abstract
class
ResourceId
{
...
...
Please
register
or
login
to post a comment