The Client Adapter Interface

You can use the following IDLos as a framework for your client adapter interface:

package tcpca
{
        interface ClientAdapter : provca::ClientAdapter
        {
                [ virtual ]
                void enable();

                [ virtual ]
                void disable();

                [ virtual ]
                void lock();

                [ virtual ]
                void unlock();

                [ virtual ]
                void configure(
                       in provca::Config i_config)
                       raises (provca::OperationFailed);
        };
};