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.openconfig.model.api.OpenConfigStatements 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.openconfig.model.api;
import static java.util.Objects.requireNonNull;
import com.google.common.annotations.Beta;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.Optional;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
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
@NonNullByDefault
public enum OpenConfigStatements implements StatementDefinition {
OPENCONFIG_ENCRYPTED_VALUE(QName.create(OpenConfigConstants.ENCRYPTED_VALUE_MODULE, "openconfig-encrypted-value"),
null, OpenConfigHashedValueStatement.class, OpenConfigHashedValueEffectiveStatement.class),
OPENCONFIG_HASHED_VALUE(QName.create(OpenConfigConstants.HASHED_VALUE_MODULE, "openconfig-hashed-value"), null,
OpenConfigHashedValueStatement.class, OpenConfigHashedValueEffectiveStatement.class),
OPENCONFIG_POSIX_PATTERN(QName.create(OpenConfigConstants.REGEXP_POSIX_MODULE, "posix-pattern"), "pattern",
OpenConfigPosixPatternStatement.class, OpenConfigPosixPatternEffectiveStatement.class),
OPENCONFIG_REGEXP_POSIX(QName.create(OpenConfigConstants.REGEXP_POSIX_MODULE, "regexp-posix"), null,
OpenConfigRegexpPosixStatement.class, OpenConfigRegexpPosixEffectiveStatement.class),
OPENCONFIG_VERSION(QName.create(OpenConfigConstants.MODULE_NAMESPACE, "openconfig-version"), "semver",
OpenConfigVersionStatement.class, OpenConfigVersionEffectiveStatement.class);
private final Class extends EffectiveStatement, ?>> effectiveRepresentation;
private final Class extends DeclaredStatement>> declaredRepresentation;
private final QName statementName;
private final @Nullable QName argumentName;
@SuppressFBWarnings("NP_STORE_INTO_NONNULL_FIELD")
OpenConfigStatements(final QName statementName, @Nullable final String argumentName,
final Class extends DeclaredStatement>> declaredRepresentation,
final Class extends EffectiveStatement, ?>> effectiveRepresentation) {
this.statementName = statementName.intern();
this.argumentName = argumentName != null ? QName.create(statementName, argumentName) : null;
this.declaredRepresentation = requireNonNull(declaredRepresentation);
this.effectiveRepresentation = requireNonNull(effectiveRepresentation);
}
@Override
public QName getStatementName() {
return statementName;
}
@Override
public Optional getArgumentDefinition() {
return ArgumentDefinition.ofNullable(argumentName, false);
}
@Override
public Class extends DeclaredStatement>> getDeclaredRepresentationClass() {
return declaredRepresentation;
}
@Override
public Class extends EffectiveStatement, ?>> getEffectiveRepresentationClass() {
return effectiveRepresentation;
}
}