All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.yangtools.rfc8528.model.api.SchemaMountStatements Maven / Gradle / Ivy

There is a newer version: 14.0.4
Show newest version
/*
 * Copyright (c) 2019 PANTHEON.tech 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.rfc8528.model.api;

import static java.util.Objects.requireNonNull;

import java.util.Optional;
import org.eclipse.jdt.annotation.NonNullByDefault;
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;

/**
 * {@link StatementDefinition}s for statements defined by RFC7952.
 *
 * @author Robert Varga
 */
@NonNullByDefault
public enum SchemaMountStatements implements StatementDefinition {
    MOUNT_POINT(QName.create(SchemaMountConstants.RFC8528_MODULE, "mount-point"), "label", MountPointStatement.class,
        MountPointEffectiveStatement.class);

    private final Class> effectiveRepresentation;
    private final Class> declaredRepresentation;
    private final QName statementName;
    private final ArgumentDefinition argumentDef;

    SchemaMountStatements(final QName statementName, final String argumentName,
            final Class> declaredRepresentation,
                    final Class> effectiveRepresentation) {
        this.statementName = statementName.intern();
        this.argumentDef = ArgumentDefinition.of(QName.create(statementName, argumentName), false);
        this.declaredRepresentation = requireNonNull(declaredRepresentation);
        this.effectiveRepresentation = requireNonNull(effectiveRepresentation);
    }

    @Override
    public Optional getArgumentDefinition() {
        return Optional.of(argumentDef);
    }

    @Override
    public QName getStatementName() {
        return statementName;
    }

    @Override
    public Class> getEffectiveRepresentationClass() {
        return effectiveRepresentation;
    }

    @Override
    public Class> getDeclaredRepresentationClass() {
        return declaredRepresentation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy