* INTERNAL:
*/
@Override
public void process(AbstractSession session, ClassLoader loader, MetadataProject project) {
// Build the stored procedure call.
PLSQLStoredFunctionCall call = new PLSQLStoredFunctionCall();
// Process the stored procedure parameters.
for (PLSQLParameterMetadata parameter : getParameters()) {
parameter.process(call, project, false);
}
if (getReturnParameter() != null) {
getReturnParameter().process(call, project, true);
}
// Process the procedure name.
call.setProcedureName(getProcedureName());
// Process the query hints.
Map<String, Object> hints = processQueryHints(session);
// Process the result class.