2 //=============================================================================
8 //=============================================================================
11 #ifndef TAO_INTERCEPTOR_TEST_I_H
12 #define TAO_INTERCEPTOR_TEST_I_H
17 * @class Secure_Vault_i
19 * Implements the Secure_Vault interface in test.idl
21 class Secure_Vault_i
: public POA_Test_Interceptors::Secure_Vault
26 Secure_Vault_i (CORBA::ORB_ptr orb
);
28 virtual CORBA::Short
ready (void);
30 /// Passwd sent in the service context list
31 virtual void authenticate (const char * user
);
33 virtual CORBA::Long
update_records (CORBA::Long id
,
34 const Test_Interceptors::Secure_Vault::Record
& val
);
36 virtual void shutdown (void);
39 /// The ORB pointer (for shutdown.)
43 #endif /* TAO_INTERCEPTOR_TEST_I_H */