resources.report.rules.pmd.LocalHomeNamingConvention.html Maven / Gradle / Ivy
LocalHomeNamingConvention
LocalHomeNamingConvention
The Local Home interface of a Session EJB should be suffixed by ‘LocalHome’.
//ClassOrInterfaceDeclaration
[
(
(./ExtendsList/ClassOrInterfaceType[ends-with(@Image,'EJBLocalHome')])
)
and
not
(
ends-with(@Image,'LocalHome')
)
]
Example(s):
public interface MyBeautifulLocalHome extends javax.ejb.EJBLocalHome {}// proper name
public interface MissingProperSuffix extends javax.ejb.EJBLocalHome {} // non-standard name