8f65e217ba3398a79d5200d188de6877a39b8dd2
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronBaseAttributes.java
1 /*
2  * Copyright (C) 2016 Intel Corporation  All rights reserved.
3  * Copyright (c) 2016 Isaku Yamahata  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 package org.opendaylight.neutron.spi;
10
11 /**
12  * This class contains behaviour common to Neutron configuration objects.
13  */
14 public interface INeutronBaseAttributes<T extends INeutronBaseAttributes> extends INeutronObject<T> {
15
16     String getName();
17
18     void setName(String name);
19 }