Package net.webpdf.wsclient.openapi
Class OperationWindowsLaunchParameter
- java.lang.Object
-
- net.webpdf.wsclient.openapi.OperationWindowsLaunchParameter
-
public class OperationWindowsLaunchParameter extends Object
OperationWindowsLaunchParameter
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOperationWindowsLaunchParameter.OperationEnumUsed to specify the standard operation that should be carried out with the specified document
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_ARGUMENTSstatic StringJSON_PROPERTY_DIRECTORYstatic StringJSON_PROPERTY_FILE_NAMEstatic StringJSON_PROPERTY_OPERATION
-
Constructor Summary
Constructors Constructor Description OperationWindowsLaunchParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OperationWindowsLaunchParameterarguments(String arguments)OperationWindowsLaunchParameterdirectory(String directory)booleanequals(Object o)OperationWindowsLaunchParameterfileName(String fileName)@Nullable StringgetArguments()The arguments that should be passed to the application when making a call.@Nullable StringgetDirectory()Used to specify the basic path, using standard DOS syntax, from which navigation will take place.@Nullable StringgetFileName()A Windows filename using the standard Windows path syntax.@Nullable OperationWindowsLaunchParameter.OperationEnumgetOperation()Used to specify the standard operation that should be carried out with the specified documentinthashCode()OperationWindowsLaunchParameteroperation(OperationWindowsLaunchParameter.OperationEnum operation)voidsetArguments(String arguments)voidsetDirectory(String directory)voidsetFileName(String fileName)voidsetOperation(OperationWindowsLaunchParameter.OperationEnum operation)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_ARGUMENTS
public static final String JSON_PROPERTY_ARGUMENTS
- See Also:
- Constant Field Values
-
JSON_PROPERTY_DIRECTORY
public static final String JSON_PROPERTY_DIRECTORY
- See Also:
- Constant Field Values
-
JSON_PROPERTY_FILE_NAME
public static final String JSON_PROPERTY_FILE_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_OPERATION
public static final String JSON_PROPERTY_OPERATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
arguments
public OperationWindowsLaunchParameter arguments(String arguments)
-
getArguments
@Nullable public @Nullable String getArguments()
The arguments that should be passed to the application when making a call.- Returns:
- arguments
-
setArguments
public void setArguments(String arguments)
-
directory
public OperationWindowsLaunchParameter directory(String directory)
-
getDirectory
@Nullable public @Nullable String getDirectory()
Used to specify the basic path, using standard DOS syntax, from which navigation will take place.- Returns:
- directory
-
setDirectory
public void setDirectory(String directory)
-
fileName
public OperationWindowsLaunchParameter fileName(String fileName)
-
getFileName
@Nullable public @Nullable String getFileName()
A Windows filename using the standard Windows path syntax. If there is a backslash in the specified path, it must be escaped by preceding it with another backslash.- Returns:
- fileName
-
setFileName
public void setFileName(String fileName)
-
operation
public OperationWindowsLaunchParameter operation(OperationWindowsLaunchParameter.OperationEnum operation)
-
getOperation
@Nullable public @Nullable OperationWindowsLaunchParameter.OperationEnum getOperation()
Used to specify the standard operation that should be carried out with the specified document. * open = Open the document. * print = Print the document.- Returns:
- operation
-
setOperation
public void setOperation(OperationWindowsLaunchParameter.OperationEnum operation)
-
-