I am extending a DbNodeServiceImpl
class and try to Override a method named
public void setProperty(NodeRef nodeRef, QName qname, Serializable value)
.
When I am trying to call the method with the help of nodeService interface its calling the default method that is present in DbNodeServiceImpl, not the custom one that i created. How can I implement the same thing? I just want to call my own method with the help of nodeservice Interface.