Add missing license notice
[neutron.git] / model / src / main / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / neutron / types / rev160517 / IpPrefixOrAddressBuilder.java
1 /*
2  * Copyright (C) 2018 Intel Corp.
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.neutron.types.rev160517;
9
10
11 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressBuilder;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefix;
14 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefixBuilder;
15
16
17 /**
18  * The purpose of generated class in src/main/java for Union types is to create new instances of unions from a string representation.
19  * In some cases it is very difficult to automate it since there can be unions such as (uint32 - uint16), or (string - uint32).
20  *
21  * The reason behind putting it under src/main/java is:
22  * This class is generated in form of a stub and needs to be finished by the user. This class is generated only once to prevent
23  * loss of user code.
24  *
25  */
26 public class IpPrefixOrAddressBuilder {
27     public static IpPrefixOrAddress getDefaultInstance(final java.lang.String defaultValue) {
28         try {
29             IpPrefix ipPrefix = IpPrefixBuilder.getDefaultInstance(defaultValue);
30             return new IpPrefixOrAddress(ipPrefix);
31         } catch (IllegalArgumentException e) {
32             IpAddress ipAddress = IpAddressBuilder.getDefaultInstance(defaultValue);
33             return new IpPrefixOrAddress(ipAddress);
34         }
35     }
36 }