cklein05 commented on a change in pull request #428: URL: https://github.com/apache/tomcat/pull/428#discussion_r654974276
########## File path: java/org/apache/catalina/realm/DataSourceRealm.java ########## @@ -223,6 +266,34 @@ public void setUserTable( String userTable ) { this.userTable = userTable; } + /** + * @return the comma separated names of user attributes to additionally query + * from the user table + */ + public String getUserAttributes() { Review comment: That is the getter method for the Realm's `userAttributes` configuration attribute. It's configured by means of an XML attribute in the `<Realm ...>` component. It can also be read and written by through JMX. AFAIK, there should always be a getter/setter pair for every configuration property using the String type. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org