All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.opendaylight.yangtools.odlext.model.api.OpenDaylightExtensionsStatements Maven / Gradle / Ivy
/*
* Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.yangtools.odlext.model.api;
import static java.util.Objects.requireNonNull;
import com.google.common.annotations.Beta;
import java.util.Optional;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.yangtools.yang.common.QName;
import org.opendaylight.yangtools.yang.model.api.meta.ArgumentDefinition;
import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
@Beta
public enum OpenDaylightExtensionsStatements implements StatementDefinition {
// Binding codegen support
AUGMENT_IDENTIFIER(QName.create(OpenDaylightExtensionsConstants.ORIGINAL_MODULE, "augment-identifier"),
"identifier", AugmentIdentifierStatement.class, AugmentIdentifierEffectiveStatement.class),
// Mount extension
MOUNT(QName.create(OpenDaylightExtensionsConstants.ORIGINAL_MODULE, "mount"), null,
MountStatement.class, MountEffectiveStatement.class),
// Context-aware RPCs
CONTEXT_INSTANCE(QName.create(OpenDaylightExtensionsConstants.ORIGINAL_MODULE, "context-instance"),
"context-type", ContextInstanceStatement.class, ContextInstanceEffectiveStatement.class),
CONTEXT_REFERENCE(QName.create(OpenDaylightExtensionsConstants.ORIGINAL_MODULE, "context-reference"),
"context-type", ContextReferenceStatement.class, ContextReferenceEffectiveStatement.class),
INSTANCE_TARGET(QName.create(OpenDaylightExtensionsConstants.ORIGINAL_MODULE, "instance-target"),
"path", InstanceTargetStatement.class, InstanceTargetEffectiveStatement.class),
RPC_CONTEXT_REFERENCE(QName.create(OpenDaylightExtensionsConstants.ORIGINAL_MODULE, "rpc-context-reference"),
"context-type", RpcContextReferenceStatement.class, RpcContextReferenceEffectiveStatement.class);
private final @NonNull Class extends EffectiveStatement, ?>> effectiveRepresentation;
private final @NonNull Class extends DeclaredStatement>> declaredRepresentation;
private final @NonNull QName statementName;
private final ArgumentDefinition argumentDef;
OpenDaylightExtensionsStatements(final QName statementName, final String argumentName,
final Class extends DeclaredStatement>> declaredRepresentation,
final Class extends EffectiveStatement, ?>> effectiveRepresentation) {
this.statementName = statementName.intern();
this.argumentDef = argumentName == null ? null
: ArgumentDefinition.of(QName.create(statementName, argumentName).intern(), false);
this.declaredRepresentation = requireNonNull(declaredRepresentation);
this.effectiveRepresentation = requireNonNull(effectiveRepresentation);
}
@Override
public QName getStatementName() {
return statementName;
}
@Override
public Optional getArgumentDefinition() {
return Optional.ofNullable(argumentDef);
}
@Override
public Class extends DeclaredStatement>> getDeclaredRepresentationClass() {
return declaredRepresentation;
}
@Override
public Class extends EffectiveStatement, ?>> getEffectiveRepresentationClass() {
return effectiveRepresentation;
}
}