6016274260f69aa8932be1ddc0815766bc862ac4
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / type / builder / AnnotationTypeBuilder.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 java.util.List;
11
12 import org.opendaylight.controller.sal.binding.model.api.AnnotationType;
13 import org.opendaylight.controller.sal.binding.model.api.Type;
14
15 public interface AnnotationTypeBuilder extends Type {
16     
17     public AnnotationTypeBuilder addAnnotation(final String packageName, final String name);
18     
19     public boolean addParameter(final String paramName, String value);
20     
21     public boolean addParameters(final String paramName, List<String> values);
22     
23     public AnnotationType toInstance();
24 }