This file is indexed.

/usr/share/idl/tao/ObjRefTemplate/ObjectReferenceTemplate.pidl is in libtao-dev 6.0.1-3.

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
// -*- IDL -*-

/**
 * @file ObjectReferenceTemplate.pidl
 *
 * $Id: ObjectReferenceTemplate.pidl 91816 2010-09-17 08:35:56Z johnnyw $
 *
 * @brief Pre-compiled IDL source for the ObjectReferenceTemplate module.
 */

#ifndef _OBJECT_REFERENCE_TEMPLATE_IDL_
#define _OBJECT_REFERENCE_TEMPLATE_IDL_

#include "tao/PI_Forward.pidl"

module PortableInterceptor
{
  typeprefix PortableInterceptor "omg.org";

  abstract valuetype ObjectReferenceFactory
  {
    Object make_object (in string repository_id,
                        in ObjectId id);
  };

  abstract valuetype ObjectReferenceTemplate : ObjectReferenceFactory
  {
    readonly attribute ServerId server_id;
    readonly attribute ORBId orb_id;
    readonly attribute AdapterName adapter_name;
  };

  typedef sequence<ObjectReferenceTemplate> ObjectReferenceTemplateSeq;
};

#endif  /* _OBJECT_REFERENCE_TEMPLATE_IDL_ */