c9f0b5304276641d4030008237478199a1188e39
[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 package org.opendaylight.neutron.spi;
10
11 /**
12  * This class contains behaviour common to Neutron configuration objects.
13  */
14 public interface INeutronAdminAttributes<T extends INeutronAdminAttributes> extends INeutronBaseAttributes<T> {
15
16     Boolean getAdminStateUp();
17
18     void setAdminStateUp(Boolean adminStateUp);
19
20     String getStatus();
21
22     void setStatus(String status);
23 }