mirror of
https://github.com/apache/nifi.git
synced 2025-02-15 06:25:35 +00:00
NIFI-12100_deprecate Annotated the ConvertExcelToCSVProcessor with the DeprecationNotice annotation and fixed the Checkstyle violation in SplitJson.
This closes #7814 Signed-off-by: Mike Thomsen <mthomsen@apache.org>
This commit is contained in:
parent
74d1040cad
commit
6288470504
@ -27,6 +27,7 @@ import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.nifi.annotation.behavior.WritesAttribute;
|
||||
import org.apache.nifi.annotation.behavior.WritesAttributes;
|
||||
import org.apache.nifi.annotation.documentation.CapabilityDescription;
|
||||
import org.apache.nifi.annotation.documentation.DeprecationNotice;
|
||||
import org.apache.nifi.annotation.documentation.Tags;
|
||||
import org.apache.nifi.components.PropertyDescriptor;
|
||||
import org.apache.nifi.csv.CSVUtils;
|
||||
@ -73,6 +74,9 @@ import java.util.stream.Collectors;
|
||||
@WritesAttribute(attribute = "convertexceltocsvprocessor.error", description = "Error message that was encountered on a per Excel sheet basis. This attribute is" +
|
||||
" only populated if an error was occured while processing the particular sheet. Having the error present at the sheet level will allow for the end" +
|
||||
" user to better understand what syntax errors in their excel doc on a larger scale caused the error.")})
|
||||
@DeprecationNotice(reason = "ConvertExcelToCSVProcessor is no longer needed since there is now the ExcelReader which along with CSVRecordSetWriter" +
|
||||
" can be used in ConvertRecord to achieve the same thing.",
|
||||
classNames = {"org.apache.nifi.excel.ExcelReader", "org.apache.nifi.csv.CSVRecordSetWriter", "org.apache.nifi.processors.standard.ConvertRecord"})
|
||||
public class ConvertExcelToCSVProcessor
|
||||
extends AbstractProcessor {
|
||||
|
||||
|
@ -23,7 +23,6 @@ import com.jayway.jsonpath.JsonPath;
|
||||
import com.jayway.jsonpath.PathNotFoundException;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.nifi.annotation.behavior.EventDriven;
|
||||
import org.apache.nifi.annotation.behavior.SystemResourceConsideration;
|
||||
import org.apache.nifi.annotation.behavior.InputRequirement;
|
||||
import org.apache.nifi.annotation.behavior.InputRequirement.Requirement;
|
||||
import org.apache.nifi.annotation.behavior.SideEffectFree;
|
||||
|
Loading…
x
Reference in New Issue
Block a user