Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaantas/89db1ec2bb4c58debc3b38e54d188061 to your computer and use it in GitHub Desktop.
Save kaantas/89db1ec2bb4c58debc3b38e54d188061 to your computer and use it in GitHub Desktop.
import com.trendyol.deliveryconfigserver.extractor.CustomBitbucketPropertyPathNotificationExtractor;
import org.springframework.cloud.config.monitor.PropertyPathNotificationExtractor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ExtractorConfiguration {
@Bean
public PropertyPathNotificationExtractor trendyolBitbucketPathExtractor() {
return new CustomBitbucketPropertyPathNotificationExtractor();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment