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
25 Secure_Vault_i (CORBA::ORB_ptr orb
);
27 virtual CORBA::Short
ready ();
29 /// Passwd sent in the service context list
30 virtual void authenticate (const char * user
);
32 virtual CORBA::Long
update_records (CORBA::Long id
,
33 const Test_Interceptors::Secure_Vault::Record
& val
);
35 virtual void shutdown ();
38 /// The ORB pointer (for shutdown.)
42 #endif /* TAO_INTERCEPTOR_TEST_I_H */