A RepraCustomProps Interface example.
package com.sybase.connector.repra;
/** configures getter and setter for custom property pages*/
public interface RepraCustomProps
{
/**
* Set the Customize Properties File
*
* @param custPropsFile path to the customize property file
*/
public void setConfigProps(String custPropsFile);
/**
* Get the Customize Properties File
*
* @return The path to the customize property file
*/
public String getConfigProps();
}