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

com.azure.spring.data.cosmos.repository.query.CosmosParameter Maven / Gradle / Ivy

There is a newer version: 5.16.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.spring.data.cosmos.repository.query;

import org.springframework.core.MethodParameter;
import org.springframework.data.repository.query.Parameter;

/**
 * A single cosmos parameter of a query method.
 */
public class CosmosParameter extends Parameter {

    /**
     * Creates a new {@link CosmosParameter} for the given {@link MethodParameter}.
     *
     * @param parameter must not be {@literal null}.
     */
    public CosmosParameter(MethodParameter parameter) {
        super(parameter);
    }

    @Override
    public boolean isSpecialParameter() {
        return super.isSpecialParameter();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy