Merge "Fixed netconf monitoring."
[controller.git] / opendaylight / config / yang-test / src / main / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / params / xml / ns / yang / controller / config / test / types / rev131127 / UnionTestBuilder.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.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.test.types.rev131127;
9
10
11 /**
12 **/
13 public class UnionTestBuilder {
14
15     public static UnionTest getDefaultInstance(String defaultValue) {
16         try {
17             int i = Integer.valueOf(defaultValue);
18             return new UnionTest(new ExtendTwice(i));
19         } catch (NumberFormatException e) {
20             return new UnionTest(defaultValue);
21         }
22     }
23
24 }