minor: removed ugly white space empty lines in some neutron-spi classes
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronObject.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.neutron.spi;
9
10 import java.util.List;
11
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid;
13
14 /**
15  * This class contains behaviour common to Neutron configuration objects.
16  */
17 public interface INeutronObject<T extends INeutronObject> {
18
19     String getID();
20
21     void setID(String id);
22
23     String getTenantID();
24
25     void setTenantID(String tenantID);
26
27     void setTenantID(Uuid tenantID);
28
29     String getProjectID();
30
31     void setProjectID(String projectID);
32
33     Long getRevisionNumber();
34
35     void setRevisionNumber(Long revisionNumber);
36
37     void initDefaults();
38
39     T extractFields(List<String> fields);
40 }