This file is indexed.

/usr/lib/ruby/vendor_ruby/IceGrid/UserAccountMapper.rb is in ruby-zeroc-ice 3.5.1-6.4ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# **********************************************************************
#
# Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
#
# Ice version 3.5.1
#
# <auto-generated>
#
# Generated from file `UserAccountMapper.ice'
#
# Warning: do not edit this file.
#
# </auto-generated>
#

require 'Ice'

module IceGrid

    if not defined?(::IceGrid::UserAccountNotFoundException)
        class UserAccountNotFoundException < Ice::UserException
            def initialize
            end

            def to_s
                'IceGrid::UserAccountNotFoundException'
            end
        end

        T_UserAccountNotFoundException = ::Ice::__defineException('::IceGrid::UserAccountNotFoundException', UserAccountNotFoundException, false, nil, [])
        UserAccountNotFoundException::ICE_TYPE = T_UserAccountNotFoundException
    end

    if not defined?(::IceGrid::UserAccountMapper_mixin)
        module UserAccountMapper_mixin
            include ::Ice::Object_mixin

            def ice_ids(current=nil)
                ['::Ice::Object', '::IceGrid::UserAccountMapper']
            end

            def ice_id(current=nil)
                '::IceGrid::UserAccountMapper'
            end

            #
            # Operation signatures.
            #
            # def getUserAccount(user, current=nil)

            def inspect
                ::Ice::__stringify(self, T_UserAccountMapper)
            end
        end
        class UserAccountMapper
            include UserAccountMapper_mixin
            
            def UserAccountMapper.ice_staticId()
                '::IceGrid::UserAccountMapper'
            end
        end
        module UserAccountMapperPrx_mixin

            def getUserAccount(user, _ctx=nil)
                UserAccountMapper_mixin::OP_getUserAccount.invoke(self, [user], _ctx)
            end
        end
        class UserAccountMapperPrx < ::Ice::ObjectPrx
            include UserAccountMapperPrx_mixin

            def UserAccountMapperPrx.checkedCast(proxy, facetOrCtx=nil, _ctx=nil)
                ice_checkedCast(proxy, '::IceGrid::UserAccountMapper', facetOrCtx, _ctx)
            end

            def UserAccountMapperPrx.uncheckedCast(proxy, facet=nil)
                ice_uncheckedCast(proxy, facet)
            end
        end

        if not defined?(::IceGrid::T_UserAccountMapper)
            T_UserAccountMapper = ::Ice::__declareClass('::IceGrid::UserAccountMapper')
            T_UserAccountMapperPrx = ::Ice::__declareProxy('::IceGrid::UserAccountMapper')
        end

        T_UserAccountMapper.defineClass(UserAccountMapper, -1, true, false, nil, [], [])
        UserAccountMapper_mixin::ICE_TYPE = T_UserAccountMapper

        T_UserAccountMapperPrx.defineProxy(UserAccountMapperPrx, T_UserAccountMapper)
        UserAccountMapperPrx::ICE_TYPE = T_UserAccountMapperPrx

        UserAccountMapper_mixin::OP_getUserAccount = ::Ice::__defineOperation('getUserAccount', ::Ice::OperationMode::Normal, ::Ice::OperationMode::Normal, false, nil, [[::Ice::T_string, false, 0]], [], [::Ice::T_string, false, 0], [::IceGrid::T_UserAccountNotFoundException])
    end
end