Switch to Objects.requireNonNull
[mdsal.git] / entityownership / mdsal-eos-binding-api / src / main / java / org / opendaylight / mdsal / eos / binding / api / Entity.java
1 /*
2  * Copyright (c) 2015 Brocade Communications 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.mdsal.eos.binding.api;
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.opendaylight.mdsal.eos.common.api.GenericEntity;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.mdsal.core.general.entity.rev150930.EntityKey;
16 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
17
18 /**
19  * Binding version of {@link GenericEntity}.
20  *
21  * @author Thomas Pantelis
22  */
23 @Beta
24 public class Entity extends GenericEntity<InstanceIdentifier<?>> {
25     private static final long serialVersionUID = 1L;
26
27     /** Constructs an instance.
28      *
29      * @param type the entity type
30      * @param id the entity id.
31      */
32     public Entity(final @NonNull String type, final @NonNull InstanceIdentifier<?> id) {
33         super(type, id);
34     }
35
36     /**
37      * Construct an Entity with an with a name. The general-entity schema is used to construct the
38      * InstanceIdentifier.
39      *
40      * @param type the type of the entity
41      * @param entityName the name of the entity used to construct a general-entity InstanceIdentifier
42      */
43     public Entity(final @NonNull String type, final @NonNull String entityName) {
44         super(type, InstanceIdentifier.builder(org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang
45                 .mdsal.core.general.entity.rev150930.Entity.class,
46                     new EntityKey(requireNonNull(entityName, "entityName should not be null"))).build());
47     }
48 }