OpenDaylight Controller functional modules.
[controller.git] / opendaylight / configuration / implementation / src / test / java / org / opendaylight / controller / configuration / internal / ConfigurationContainerAwareTest.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.configuration.internal;
11
12 import org.opendaylight.controller.configuration.IConfigurationContainerAware;
13 import org.opendaylight.controller.sal.utils.Status;
14
15 /**
16  * @file   TestConfigurationAware.java
17  *
18  * @brief  Test Class to create for jUnit test cases for Configuration Implementation
19  *
20  *
21  */
22
23 public class ConfigurationContainerAwareTest implements
24          IConfigurationContainerAware {
25
26         
27         
28         
29         @Override
30         public Status saveConfiguration() {
31                 return null;
32         }
33         
34         
35 }