田源
2025-01-09 8a166a60cfd1a2e593ffa103d10c0dc224fc8628
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// **********************************************************************
//
// Copyright (c) 2008-2023 VCI-Tech, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described the
// ICE_LICENSE file included this distribution.
//
// **********************************************************************
 
#pragma once
 
[["java:package:com.vci.corba"]]
["cs:namespace:com.vci.corba"]
 
//module com {
//module vci {
//module corba {
module common {
    module data {
 
        sequence<string> StringArray;
        sequence<StringArray> StringArray2D;
        sequence<byte> bytes;
        //sequence<bytes> byteSeq;
        sequence<long> longSeq;
 
        const long InvocationContextID = 2130771713;
        
        struct VCIInvocationInfo {
            string userID;
            string userName;
            string trueName;
            string secretGrade;
            string email;
            string language;
            string country;
            StringArray    groupIDs;
            StringArray groupNames;
            StringArray    roleIDs;
            StringArray roleNames;
            string clientIPInfo;
            string clientMachine;
            string clientOS;
            string clientOSUser;
            StringArray extAttribs;
        }
        
                /**用户信息(接口传递的全局变量)**/                    
        struct UserEntityInfo {
            string userName;
            string modules;
            string ip;
        };
        
    }
 
    // 通用异常信息
    exception VCIError {
        string code;
        data::StringArray messages;
    };
}
//}}}