org.zodiac.autoconfigure.tenant.condition.ConditionalOnPlatformTenantEnabled Maven / Gradle / Ivy
package org.zodiac.autoconfigure.tenant.condition;
import org.springframework.boot.autoconfigure.condition.AllNestedConditions;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Conditional;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@Conditional({ConditionalOnPlatformTenantEnabled.OnPlatformTenantCondition.class})
public @interface ConditionalOnPlatformTenantEnabled {
class OnPlatformTenantCondition extends AllNestedConditions {
public OnPlatformTenantCondition() {
super(ConfigurationPhase.REGISTER_BEAN);
}
@ConditionalOnProperty(value = org.zodiac.tenant.constants.PlatformTenantSystemPropetiesConstants.PLATFORM_TENANT_ENABLED, havingValue = "true")
static class FoundProperty {
}
}
}