This file is indexed.

/usr/include/arc/security/ArcPDP/attr/GenericAttribute.h is in nordugrid-arc-dev 5.0.5-1ubuntu1.

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

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

namespace ArcSec {
class GenericAttribute : public AttributeValue {
private:
  std::string value;
  std::string type;
  std::string id;
  static std::string identifier;

public:
  GenericAttribute() { };
  GenericAttribute(const std::string& v,const std::string& i) : value(v), id(i) { };
  virtual ~GenericAttribute() { };

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

}// namespace ArcSec

#endif /* __ARC_SEC_GENERICATTRIBUTE_H__ */