wizard in the Informatica Connector Toolkit to implement the run-time behavior in Java.
In the
Connector Navigator
view, right-click the project and select
Runtime
<NMOName>
Set Up
.
The
Run-Time Implementation
wizard appears.
Choose to implement the run-time behavior in Java.
Add the required run-time library files and generate the
<ConnectorID><NMOName>DataAdapter.java
and
<ConnectorID>DataConnection.java
files.
Implement the following methods in the
<ConnectorID><NMOName>DataAdapter.java
file:
initDataSourceOperation. Implement this method to perform tasks before a mapping run. For example, you can implement code to initialize environment variables. The scope of the RuntimeConfig and Metadata handles available in this method is within the initDataSourceOperation method.
deinitDataSourceOperation. Implement this method to perform tasks after a mapping run. The scope of the RuntimeConfig and Metadata handles available in this method is within the deinitDataSourceOperation method.
initDataSourceOperation
deinitDataSourceOperation
initDataSession
deinitDataSession
read
write
reset (Optional. Implement this method if lookup operation is supported.)
beginDataSession
endDataSession
Implement the following methods in the
<ConnectorID>DataConnection.java
file:
connect
disconnect
To support data preview in the Informatica Cloud, implement the following method in the