Bug 1029: Remove dead code: samples/clustersession
[controller.git] / opendaylight / adsal / configuration / implementation / src / test / java / org / opendaylight / controller / configuration / internal / ConfigurationAwareTest.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.IConfigurationAware;
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 ConfigurationService Implementation
19  *
20  *
21  */
22
23 public class ConfigurationAwareTest implements
24 IConfigurationAware {
25
26         @Override
27         public Status saveConfiguration() {
28                 return null;
29         }
30
31
32 }