blob: a452f22da424417a6bda14be19b6760fa4e80f48 [file] [log] [blame]
Sho SHIMIZUad4f2cd2016-09-01 13:05:56 -07001/*
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
17package org.onosproject.net.flow;
18
19/**
20 * Represents FlowRuleOperations that does nothing on success or on error.
21 */
22final class NullFlowRuleOperationsContext implements FlowRuleOperationsContext {
23 private static final FlowRuleOperationsContext INSTANCE = new NullFlowRuleOperationsContext();
24
25 private NullFlowRuleOperationsContext() {}
26
27 /**
28 * Returns an instance of this class.
29 *
30 * @return instance
31 */
32 public static FlowRuleOperationsContext getInstance() {
33 return INSTANCE;
34 }
35}