Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2021 the original author or authors.
* Copyright 2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,14 +14,27 @@
* limitations under the License.
*/

package org.springframework.integration.dsl
package org.springframework.integration.dsl;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import kotlin.DslMarker;

/**
* The Kotlin [DslMarker] annotation for classes used in scope of DSL, including all the Java DSL classes.
* The Kotlin {@link DslMarker} annotation for classes used in scope of DSL, including all the Java DSL classes.
*
* @author Artem Bilan
*
* @since 5.5.8
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
@Documented
@DslMarker
annotation class IntegrationDsl
public @interface IntegrationDsl {

}