Thanks again Himanshu and I followed the exact instructions Vlad went through in the video tutorial using the same program i.e Eclipse so would think it should work.
I think I solved it my also adding interface connection.jar. When I did that I did get the entire "skeleton" as shown in the video tutorial. Support (or Himanshu if you know?), can you please confirm this is right/new (when compared to what you did in the tutorial)?
This is the code I got (no errors) after adding the connection.jar (I now have awareim.jar, openadaptor.jar, shared,jar and connection.jar as referenced libraries) and when adding a class using interface IProcess:
package com.fokalpoint.awareim.plugins;
import com.bas.basserver.executionengine.ExecutionException;
import com.bas.basserver.executionengine.IExecutionEngine;
import com.bas.basserver.executionengine.IProcess;
import com.bas.basserver.executionengine.SuspendProcessException;
import com.bas.connectionserver.server.AccessDeniedException;
public class ProcessSkeleton implements IProcess {
@Override
public boolean cancel() {
// TODO Auto-generated method stub
return false;
}
@Override
public Object execute(IExecutionEngine arg0, Object[] arg1)
throws SuspendProcessException, ExecutionException, AccessDeniedException {
// TODO Auto-generated method stub
return null;
}
@Override
public Object resume(IExecutionEngine arg0, Object arg1)
throws SuspendProcessException, ExecutionException, AccessDeniedException {
// TODO Auto-generated method stub
return null;
}
}
Thanks