import default import semmle.code.java.frameworks.spring.SpringXMLElement /** represents the <attribute> element in Spring XML files*/ class SpringAttribute extends SpringXMLElement { SpringAttribute() { this.getName() = "attribute" } /** returns the value of the key attribute*/ string getKeyString() { result = this.getAttributeValue("key") } /** returns the value of the value attribute*/ string getValueString() { result = this.getAttributeValue("value") } }