Merge "Add IfNewHostNotify to DeviceManager"
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / type / builder / GeneratedTOBuilder.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  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.controller.sal.binding.model.api.type.builder;
9
10 import org.opendaylight.controller.sal.binding.model.api.GeneratedTransferObject;
11
12 /**
13
14  */
15 public interface GeneratedTOBuilder extends GeneratedTypeBuilder {
16
17     public boolean addExtendsType(final GeneratedTransferObject genTransObj);
18
19     public GeneratedPropertyBuilder addProperty(final String name);
20
21     public boolean addEqualsIdentity(final GeneratedPropertyBuilder property);
22
23     public boolean addHashIdentity(final GeneratedPropertyBuilder property);
24
25     public boolean addToStringProperty(final GeneratedPropertyBuilder property);
26
27     @Override
28     public GeneratedTransferObject toInstance();
29
30     public GeneratedTransferObject toIdentityInstance();
31
32 }