/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.mdsal.binding.model.util; import static org.opendaylight.mdsal.binding.model.util.Types.parameterizedTypeFor; import static org.opendaylight.mdsal.binding.model.util.Types.typeForClass; import com.google.common.annotations.VisibleForTesting; import org.opendaylight.mdsal.binding.model.api.ConcreteType; import org.opendaylight.mdsal.binding.model.api.JavaTypeName; import org.opendaylight.mdsal.binding.model.api.ParameterizedType; import org.opendaylight.mdsal.binding.model.api.Type; import org.opendaylight.yangtools.yang.binding.Action; import org.opendaylight.yangtools.yang.binding.Augmentable; import org.opendaylight.yangtools.yang.binding.Augmentation; import org.opendaylight.yangtools.yang.binding.BaseIdentity; import org.opendaylight.yangtools.yang.binding.ChildOf; import org.opendaylight.yangtools.yang.binding.ChoiceIn; import org.opendaylight.yangtools.yang.binding.DataContainer; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.binding.DataRoot; import org.opendaylight.yangtools.yang.binding.Identifiable; import org.opendaylight.yangtools.yang.binding.Identifier; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.opendaylight.yangtools.yang.binding.KeyedListAction; import org.opendaylight.yangtools.yang.binding.Notification; import org.opendaylight.yangtools.yang.binding.NotificationListener; import org.opendaylight.yangtools.yang.binding.RpcInput; import org.opendaylight.yangtools.yang.binding.RpcOutput; import org.opendaylight.yangtools.yang.binding.RpcService; import org.opendaylight.yangtools.yang.binding.annotations.RoutingContext; import org.opendaylight.yangtools.yang.common.RpcResult; public final class BindingTypes { public static final ConcreteType BASE_IDENTITY = typeForClass(BaseIdentity.class); public static final ConcreteType DATA_CONTAINER = typeForClass(DataContainer.class); public static final ConcreteType DATA_OBJECT = typeForClass(DataObject.class); public static final ConcreteType DATA_ROOT = typeForClass(DataRoot.class); public static final ConcreteType NOTIFICATION = typeForClass(Notification.class); public static final ConcreteType NOTIFICATION_LISTENER = typeForClass(NotificationListener.class); public static final ConcreteType RPC_INPUT = typeForClass(RpcInput.class); public static final ConcreteType RPC_OUTPUT = typeForClass(RpcOutput.class); public static final ConcreteType RPC_SERVICE = typeForClass(RpcService.class); // This is an annotation, we are current just referencing the type public static final JavaTypeName ROUTING_CONTEXT = JavaTypeName.create(RoutingContext.class); @VisibleForTesting static final ConcreteType AUGMENTABLE = typeForClass(Augmentable.class); @VisibleForTesting static final ConcreteType AUGMENTATION = typeForClass(Augmentation.class); @VisibleForTesting static final ConcreteType IDENTIFIABLE = typeForClass(Identifiable.class); @VisibleForTesting static final ConcreteType IDENTIFIER = typeForClass(Identifier.class); @VisibleForTesting static final ConcreteType INSTANCE_IDENTIFIER = typeForClass(InstanceIdentifier.class); private static final ConcreteType ACTION = typeForClass(Action.class); private static final ConcreteType CHILD_OF = typeForClass(ChildOf.class); private static final ConcreteType CHOICE_IN = typeForClass(ChoiceIn.class); private static final ConcreteType KEYED_LIST_ACTION = typeForClass(KeyedListAction.class); private static final ConcreteType RPC_RESULT = typeForClass(RpcResult.class); private BindingTypes() { } /** * Type specializing {@link Action} for a particular type. * * @param parent Type of parent defining the action * @param input Type input type * @param output Type output type * @return A parameterized type corresponding to {@code Action} * @throws NullPointerException if any argument is is null */ public static ParameterizedType action(final Type parent, final Type input, final Type output) { return parameterizedTypeFor(ACTION, instanceIdentifier(parent), input, output); } /** * Type specializing {@link KeyedListAction} for a particular type. * * @param parent Type of parent defining the action * @param keyType Type of parent's key * @param input Type input type * @param output Type output type * @return A parameterized type corresponding to {@code KeyedListAction} * @throws NullPointerException if any argument is is null */ public static ParameterizedType keyedListAction(final Type parent, final Type keyType, final Type input, final Type output) { return parameterizedTypeFor(KEYED_LIST_ACTION, keyType, parent, input, output); } /** * Specialize {@link Augmentable} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code Augmentable} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType augmentable(final Type type) { return parameterizedTypeFor(AUGMENTABLE, type); } /** * Specialize {@link ChildOf} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code ChildOf} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType childOf(final Type type) { return parameterizedTypeFor(CHILD_OF, type); } /** * Type specializing {@link ChoiceIn} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code ChoiceIn} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType choiceIn(final Type type) { return parameterizedTypeFor(CHOICE_IN, type); } /** * Type specializing {@link Identifier} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code Identifier} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType identifier(final Type type) { return parameterizedTypeFor(IDENTIFIER, type); } /** * Type specializing {@link Identifiable} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code Identifiable} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType identifiable(final Type type) { return parameterizedTypeFor(IDENTIFIABLE, type); } /** * Type specializing {@link InstanceIdentifier} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code InstanceIdentifier} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType instanceIdentifier(final Type type) { return parameterizedTypeFor(INSTANCE_IDENTIFIER, type); } /** * Type specializing {@link RpcResult} for a particular type. * * @param type Type for which to specialize * @return A parameterized type corresponding to {@code RpcResult} * @throws NullPointerException if {@code type} is null */ public static ParameterizedType rpcResult(final Type type) { return parameterizedTypeFor(RPC_RESULT, type); } }