spi: consolidate common member
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronAdminAttributes.java
1 /*
2  * Copyright (C) 2016 Intel Coporporation  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
10 package org.opendaylight.neutron.spi;
11
12 /**
13  * This class contains behaviour common to Neutron configuration objects
14  */
15 public interface INeutronAdminAttributes<T extends INeutronAdminAttributes> extends INeutronBaseAttributes<T> {
16     Boolean getAdminStateUp();
17
18     void setAdminStateUp(Boolean adminStateUp);
19
20     String getStatus();
21
22     void setStatus(String status);
23 }