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

io.micronaut.data.model.runtime.DefaultStoredDataOperation Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2017-2020 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.micronaut.data.model.runtime;

import io.micronaut.core.annotation.AnnotationMetadata;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.type.Argument;
import io.micronaut.inject.ExecutableMethod;

/**
 * Used as a super class to resolve and potentially cache data about a method.
 *
 * @param  The return type.
 * @since 2.2.0
 * @author graemerocher
 */
public class DefaultStoredDataOperation implements StoredDataOperation {
    private final ExecutableMethod method;

    public DefaultStoredDataOperation(ExecutableMethod method) {
        this.method = method;
    }

    @NonNull
    @Override
    public final Argument getResultArgument() {
        //noinspection unchecked
        return (Argument) method.getReturnType().asArgument();
    }

    @Override
    public final AnnotationMetadata getAnnotationMetadata() {
        return method.getAnnotationMetadata();
    }
}






© 2015 - 2025 Weber Informatics LLC | Privacy Policy