This file is indexed.

/usr/share/doc/polyorb-doc/examples/corba/send/print.idl is in polyorb-doc 2.11~20140418-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
module Test {
  interface Printer {
    oneway void printString (in string Mesg);
    oneway void printLong (in long K);
    string echoString (in string K);
    long echoLong (in long K);
  };

  interface Controller {
    Printer Get_Printer ();

    void StopServer ();
    // Shut down server

    boolean test_OK ();
    
  };

};