Committed by
Gerrit Code Review
ONOS-5218 protected Link related changes.
Change-Id: I0163a2c4ec3c32b5aaf320a71d5ab5929ad3c73a
Showing
2 changed files
with
57 additions
and
0 deletions
... | @@ -145,6 +145,13 @@ public final class AnnotationKeys { | ... | @@ -145,6 +145,13 @@ public final class AnnotationKeys { |
145 | public static final String PASSWORD = "password"; | 145 | public static final String PASSWORD = "password"; |
146 | 146 | ||
147 | /** | 147 | /** |
148 | + * Link annotation key to express that a Link | ||
149 | + * is backed by underlying protection mechanism. | ||
150 | + */ | ||
151 | + // value is undefined at the moment, only using key existence | ||
152 | + public static final String PROTECTED = "protected"; | ||
153 | + | ||
154 | + /** | ||
148 | * Returns the value annotated object for the specified annotation key. | 155 | * Returns the value annotated object for the specified annotation key. |
149 | * The annotated value is expected to be String that can be parsed as double. | 156 | * The annotated value is expected to be String that can be parsed as double. |
150 | * If parsing fails, the returned value will be 1.0. | 157 | * If parsing fails, the returned value will be 1.0. | ... | ... |
1 | +/* | ||
2 | + * Copyright 2016-present Open Networking Laboratory | ||
3 | + * | ||
4 | + * Licensed under the Apache License, Version 2.0 (the "License"); | ||
5 | + * you may not use this file except in compliance with the License. | ||
6 | + * You may obtain a copy of the License at | ||
7 | + * | ||
8 | + * http://www.apache.org/licenses/LICENSE-2.0 | ||
9 | + * | ||
10 | + * Unless required by applicable law or agreed to in writing, software | ||
11 | + * distributed under the License is distributed on an "AS IS" BASIS, | ||
12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
13 | + * See the License for the specific language governing permissions and | ||
14 | + * limitations under the License. | ||
15 | + */ | ||
16 | +package org.onosproject.net.intent.constraint; | ||
17 | + | ||
18 | +import org.onosproject.net.AnnotationKeys; | ||
19 | +import org.onosproject.net.Link; | ||
20 | +import org.onosproject.net.intent.ResourceContext; | ||
21 | + | ||
22 | +/** | ||
23 | + * Constraint to request using only {@link AnnotationKeys#PROTECTED protected} | ||
24 | + * Links. | ||
25 | + */ | ||
26 | +public class ProtectedConstraint extends BooleanConstraint { | ||
27 | + | ||
28 | + private static final ProtectedConstraint PROTECTED_CONSTRAINT | ||
29 | + = new ProtectedConstraint(); | ||
30 | + | ||
31 | + /** | ||
32 | + * Returns {@link ProtectedConstraint} instance. | ||
33 | + * | ||
34 | + * @return {@link ProtectedConstraint} instance | ||
35 | + */ | ||
36 | + public static ProtectedConstraint useProtectedLink() { | ||
37 | + return PROTECTED_CONSTRAINT; | ||
38 | + } | ||
39 | + | ||
40 | + @Override | ||
41 | + public boolean isValid(Link link, ResourceContext context) { | ||
42 | + return link.annotations().keys().contains(AnnotationKeys.PROTECTED); | ||
43 | + } | ||
44 | + | ||
45 | + @Override | ||
46 | + public String toString() { | ||
47 | + return "Protected"; | ||
48 | + } | ||
49 | + | ||
50 | +} |
-
Please register or login to post a comment