-1

What is JCoDestinationManager.getDestination for?

private JCoDestination getConnection(String connectionPropertyFileName)
{
    if (log.isInfoEnabled())
    {
        log.info("Inside SAPJavaDefaultAdapter/getConnection()");
    }

    try
    {
        return JCoDestinationManager.getDestination(connectionPropertyFileName);
    }
    catch (JCoException e)
    {
        e.printStackTrace();
        return null;
    }
}
Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Saggy
  • 29
  • 5

1 Answers1

-1

Straight from the manual:

Call this method to get an instance of a destination, on which you need to execute a function module.

Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331