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

com.kapeta.spring.annotation.KapetaEnableDefaultConfig Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Copyright 2023 Kapeta Inc.
 * SPDX-License-Identifier: MIT
 */

package com.kapeta.spring.annotation;

import com.kapeta.spring.config.KapetaDefaultConfig;
import com.kapeta.spring.config.KapetaRestControllerConfig;
import org.springframework.context.annotation.Import;

import java.lang.annotation.*;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({KapetaDefaultConfig.class, KapetaRestControllerConfig.class})
public @interface KapetaEnableDefaultConfig {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy