Package net.webpdf.wsclient.openapi
Class OperationPortfolioSelection
- java.lang.Object
-
- net.webpdf.wsclient.openapi.OperationPortfolioSelection
-
public class OperationPortfolioSelection extends Object
Used to select documents that match the selection rules and that should be processed (extracted / deleted) accordingly. You can use multiple selection elements.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_FILE_NAMEstatic StringJSON_PROPERTY_PATH
-
Constructor Summary
Constructors Constructor Description OperationPortfolioSelection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)OperationPortfolioSelectionfileName(String fileName)@Nullable StringgetFileName()Filters by file name for the selection@Nullable StringgetPath()Filters by path for the selectioninthashCode()OperationPortfolioSelectionpath(String path)voidsetFileName(String fileName)voidsetPath(String path)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_FILE_NAME
public static final String JSON_PROPERTY_FILE_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_PATH
public static final String JSON_PROPERTY_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
fileName
public OperationPortfolioSelection fileName(String fileName)
-
getFileName
@Nullable public @Nullable String getFileName()
Filters by file name for the selection. \"\\*.xls\", for example, would result in all XLS documents being selected. Meanwhile, \"xyz.json\" would result in attachments named \"xyz.json\" being selected (for extraction / deletion). **Important:** The \"path\" and \"fileName\" parameters follow and implement the glob selection patterns for files and paths.- Returns:
- fileName
-
setFileName
public void setFileName(String fileName)
-
path
public OperationPortfolioSelection path(String path)
-
getPath
@Nullable public @Nullable String getPath()
Filters by path for the selection. \"a/b/\\*\", for example, would result in all a/b subfolders being searched for matching documents. Whether a document will be considered a match will also depend on the \"fileName\" parameter. If the \"fileName\" parameter is not set, this parameter can be used to select the path instead (for extraction / deletion)- Returns:
- path
-
setPath
public void setPath(String path)
-
-