Merge "Fixed for bug : 1171 - issue while creating subnet"
[controller.git] / opendaylight / md-sal / model / model-flow-base / src / main / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / flow / types / port / rev130925 / PortNumberBuilder.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.port.rev130925;
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.port.rev130925.CommonPort.PortNumber;
11
12
13 public class PortNumberBuilder {
14
15     public static PortNumber getDefaultInstance(java.lang.String defaultValue) {
16         try {
17             long uint32 = Long.parseLong(defaultValue);
18             return new PortNumber(uint32);
19         } catch(NumberFormatException e){
20             return new PortNumber(defaultValue);
21         }
22     }
23
24 }