Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / AbstractLengthRestrictedBaseType.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.yangtools.yang.model.util.type;
9
10 import java.util.Optional;
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.model.api.type.LengthConstraint;
13 import org.opendaylight.yangtools.yang.model.api.type.LengthRestrictedTypeDefinition;
14
15 abstract class AbstractLengthRestrictedBaseType<T extends LengthRestrictedTypeDefinition<T>> extends AbstractBaseType<T>
16         implements LengthRestrictedTypeDefinition<T> {
17
18     AbstractLengthRestrictedBaseType(final QName qname) {
19         super(qname);
20     }
21
22     @Override
23     public final Optional<LengthConstraint> getLengthConstraint() {
24         return Optional.empty();
25     }
26 }