Interface MetadataWriteFilter
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
StandardWriteFilter
public interface MetadataWriteFilter extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(String field, String value, Map<String,String[]> data)
Based on the field and value, this filter modifies the field and/or the value to something that should be added to the Metadata object.void
filterExisting(Map<String,String[]> data)
void
set(String field, String value, Map<String,String[]> data)
Based on the field and the value, this filter modifies the field and/or the value to something that should be set in the Metadata object.
-
-
-
Method Detail
-
add
void add(String field, String value, Map<String,String[]> data)
Based on the field and value, this filter modifies the field and/or the value to something that should be added to the Metadata object. If the value isnull
, no value is set or added. Status updates (e.g. write limit reached) can be added directly to the underlying metadata.- Parameters:
field
-value
-data
-
-
-