Index
Object PCRE.PCREConfigServer
This class allows you to retrieve configuration information about
the PCRE Server configuration.
The information available from this class may be usefull to users
who want to write portable applications, without having to hardcode
hostnames, etc.
Connect()
- Connect the client to the PCRE Configuration Server.
Disconnect()
- Disconnect the client from the PCRE Configuration Server.
getHost()
- Return the host-name of the PCRE Configuration Server.
getPCREDORTempDir()
- Get the temp directory on the server for DOR run-time temp files.
getPCREFileServer()
- Return the name of the file transfer protocol used by the file return.
getPCREGatewayName()
- Get the default PCREGateway name.
getPCREHostAddress()
- Get the IP Address of the host on which the PCRE Product is installed.
getPCREHostName()
- Get the name of the host on which the PCRE Product is installed.
getPCREInfo()
- Retrieve all the attribute strings in one API call.
getPCREInstallDir()
- Get the product installation directory, (this is the server side install directory).
getPCREOutputDir()
- Get the name of the directory where output may be put.
getPCRESampleOutputDir()
- Get the name of the directory to be used for sample output.
getPCRESampleReportDir()
- Get the name of the directory containing the sample reports that ship with the product.
getPCREVersion()
- Find the PCRE Product version.
getPCREWebServerDir()
- Get the web server directory.
setHost(String)
- Set the host-name of the PCRE Configuration Server.
Connect
void Connect()
Connect the client to the PCRE Configuration Server. Must have connected client before making this call.
Disconnect
void Disconnect()
Disconnect the client from the PCRE Configuration Server.
getHost
String getHost()
Return the host-name of the PCRE Configuration Server.
- Returns:
- The hostname on which the PCRE Configuration Server is running.
getPCREDORTempDir
String getPCREDORTempDir()
Get the temp directory on the server for DOR run-time temp files.
- Returns:
- The DOR run-time temp directory.
getPCREFileServer
String getPCREFileServer()
Return the name of the file transfer protocol used by the file return.
- Returns:
- The name of the file transfer protocol, currently on FTPServer is provided.
getPCREGatewayName
String getPCREGatewayName()
Get the default PCREGateway name.
- Returns:
- The default PCREGateway name.
getPCREHostAddress
String getPCREHostAddress()
Get the IP Address of the host on which the PCRE Product is installed.
- Returns:
- The ip address of the PCRE server.
getPCREHostName
String getPCREHostName()
Get the name of the host on which the PCRE Product is installed.
- Returns:
- The hostname of the PCRE Server.
getPCREInfo
PCREInfo getPCREInfo()
Retrieve all the attribute strings in one API call.
- Returns:
- All the attribute strings.
getPCREInstallDir
String getPCREInstallDir()
Get the product installation directory, (this is the server side install directory).
- Returns:
- The product installation directory.
getPCREOutputDir
String getPCREOutputDir()
Get the name of the directory where output may be put.
- Returns:
- The PCRE Output Directory.
getPCRESampleOutputDir
String getPCRESampleOutputDir()
Get the name of the directory to be used for sample output.
- Returns:
- The name of the output directory the sample programs will use.
getPCRESampleReportDir
String getPCRESampleReportDir()
Get the name of the directory containing the sample reports that ship with the product.
- Returns:
- The name of the directory containing the sample reports.
getPCREVersion
String getPCREVersion()
Find the PCRE Product version.
- Returns:
- The PCRE Product version.
getPCREWebServerDir
String getPCREWebServerDir()
Get the web server directory.
- Returns:
- The web server directory.
setHost
void setHost(String address)
Set the host-name of the PCRE Configuration Server.
- Parameters:
address - The host-name to use.
Index