Simplify Module/Submodule statement argument usage
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / AbstractIdentifiableSchemaContextProvider.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech 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;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.Beta;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.eclipse.jdt.annotation.NonNullByDefault;
15 import org.opendaylight.yangtools.concepts.Identifiable;
16 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
17
18 @Beta
19 @NonNullByDefault
20 public abstract class AbstractIdentifiableSchemaContextProvider<T> extends AbstractSchemaContextProvider
21         implements Identifiable<T> {
22     private final @NonNull T identifier;
23
24     protected AbstractIdentifiableSchemaContextProvider(final SchemaContext schemaContext, final T identifier) {
25         super(schemaContext);
26         this.identifier = requireNonNull(identifier);
27     }
28
29     @Override
30     public final T getIdentifier() {
31         return identifier;
32     }
33
34 }