Skip to content
Draft
Show file tree
Hide file tree
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
Expand Up @@ -46,10 +46,13 @@ public FDv2PollingInitializerBuilder serviceEndpointsOverride(ServiceEndpointsBu
/**
* Sets the Payload Filter that will be used to filter the objects (flags, segments, etc.)
* from this initializer.
*
*
* @param payloadFilter the filter to be used
* @return the builder
* @deprecated Payload filtering is not supported with the FDv2 data system and this method will be
* removed in a future release.
*/
@Deprecated
public FDv2PollingInitializerBuilder payloadFilter(String payloadFilter) {
this.payloadFilter = payloadFilter;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,13 @@ public FDv2PollingSynchronizerBuilder serviceEndpointsOverride(ServiceEndpointsB
/**
* Sets the Payload Filter that will be used to filter the objects (flags, segments, etc.)
* from this synchronizer.
*
*
* @param payloadFilter the filter to be used
* @return the builder
* @deprecated Payload filtering is not supported with the FDv2 data system and this method will be
* removed in a future release.
*/
@Deprecated
public FDv2PollingSynchronizerBuilder payloadFilter(String payloadFilter) {
this.payloadFilter = payloadFilter;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,13 @@ public FDv2StreamingSynchronizerBuilder serviceEndpointsOverride(ServiceEndpoint
/**
* Sets the Payload Filter that will be used to filter the objects (flags, segments, etc.)
* from this synchronizer.
*
*
* @param payloadFilter the filter to be used
* @return the builder
* @deprecated Payload filtering is not supported with the FDv2 data system and this method will be
* removed in a future release.
*/
@Deprecated
public FDv2StreamingSynchronizerBuilder payloadFilter(String payloadFilter) {
this.payloadFilter = payloadFilter;
return this;
Expand Down
Loading