Package edm.edom3
Interface EDMDownload
-
- All Superinterfaces:
EDMContextDependent
,EDMWorker
- All Known Subinterfaces:
EDMCheckout
public interface EDMDownload extends EDMWorker
Worker to download data from server,local database or file to local database or file. Also used as file converter STEP to HTML. Then use source=file(stream), target=file(stream)- Author:
- AET
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getSchemaName()
Get schema name for this workerjava.io.File
getShortNameFile()
Get short name filevoid
setFilterBuffer(java.lang.String filter)
A NULL terminated array of entityNames or entityInstanceIds that specifies the instance types that should be written (include filter) or not written (exclude filter) to the STEP file.void
setSchemaName(java.lang.String s)
Set schema namevoid
setShortNameFile(java.io.File s)
Set short name filevoid
setStringEncodingCode(long code)
Set String encoding-
Methods inherited from interface edm.edom3.EDMContextDependent
getContext
-
Methods inherited from interface edm.edom3.EDMWorker
execute, getConfiguration, getFileMappings, getFormalParameters, getHitsOut, getIndexOut, getLogDescription, getOptions, getParameters, getResult, getSource, getTarget, resetOptions, setConfiguration, setFileMappings, setOptions, setParameters, setSource, setSystemOutput, setSystemOutput, setTarget, setUserOutput, setUserOutput
-
-
-
-
Method Detail
-
getSchemaName
java.lang.String getSchemaName()
Get schema name for this worker- Returns:
- schema name for this worker
-
setSchemaName
void setSchemaName(java.lang.String s)
Set schema name- Parameters:
s
- schema name for this worker
-
getShortNameFile
java.io.File getShortNameFile()
Get short name file- Returns:
- short name file for the downloader (STEP format only)
-
setShortNameFile
void setShortNameFile(java.io.File s)
Set short name file- Parameters:
s
- short name file for the downloader (STEP format only)
-
setStringEncodingCode
void setStringEncodingCode(long code)
Set String encoding- Parameters:
code
- EDMConstant.StepOutputOptions for char encoding
-
setFilterBuffer
void setFilterBuffer(java.lang.String filter)
A NULL terminated array of entityNames or entityInstanceIds that specifies the instance types that should be written (include filter) or not written (exclude filter) to the STEP file. Default value is NULL- Parameters:
filter
- An Object type. This can either be an array of EDMInstances or an array of Strings.
-
-