98437ac1415f668ab12e2a7c4531e5e52b339b0a
[gssweb.git] / json_gssapi / test / MockImportName.h
1 /*
2  * Copyright (c) 2014 <copyright holder> <email>
3  * 
4  * For license details, see the LICENSE file in the root of this project.
5  * 
6  */
7
8 #ifndef MOCKIMPORTNAME_H
9 #define MOCKIMPORTNAME_H
10
11 #include <gssapi.h>
12
13 #include "datamodel/GSSBuffer.h"
14
15 class MockImportName
16 {
17 public:
18   static OM_uint32      retVal;
19   static OM_uint32      minor_status;
20   static GSSBuffer      input_name_buffer;
21   static gss_OID        input_name_type;
22   static gss_name_t     output_name;
23   
24   static bool           visited;
25   
26   static void reset();
27 };
28
29 #endif // MOCKIMPORTNAME_H