This file is indexed.

/usr/include/arc/security/ArcPDP/attr/AnyURIAttribute.h is in nordugrid-arc-dev 4.2.0-2.

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
#ifndef __ARC_SEC_ANYURIATTRIBUTE_H__
#define __ARC_SEC_ANYURIATTRIBUTE_H__

#include <arc/security/ArcPDP/attr/AttributeValue.h>

namespace ArcSec {
class AnyURIAttribute : public AttributeValue {
private:
  static std::string identifier;
  std::string value;
  std::string id;
  
public:
  AnyURIAttribute() { };
  AnyURIAttribute(const std::string& v,const std::string& i) : value(v), id(i){ };
  virtual ~AnyURIAttribute(){ };

  virtual bool equal(AttributeValue* other, bool check_id = true);
  virtual std::string encode() {return value;};
  std::string getValue(){ return value; };
  std::string getId(){ return id; };
  virtual std::string getType() {return identifier; };
  static const std::string& getIdentifier(void) { return identifier; };
 
};

}// namespace ArcSec

#endif /* __ARC_SEC_ANYURIATTRIBUTE_H__ */