Commit 55a2f9b4 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed javadoc error.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9277 b35dd754-fafc-0310-a699-88a17e54d16e
parent 55de9173
...@@ -494,6 +494,8 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener { ...@@ -494,6 +494,8 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener {
/** /**
* Returns the collection of searchable field names that does not include the fields * Returns the collection of searchable field names that does not include the fields
* listed in the EXCLUDEDFIELDS property list. * listed in the EXCLUDEDFIELDS property list.
*
* @return collection of searchable field names.
*/ */
public Collection<String> getFilteredSearchFields() { public Collection<String> getFilteredSearchFields() {
Collection<String> searchFields; Collection<String> searchFields;
...@@ -518,7 +520,7 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener { ...@@ -518,7 +520,7 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener {
* in the case of preventing users email addresses from being revealed as part of * in the case of preventing users email addresses from being revealed as part of
* the search results. * the search results.
* *
* @param set of fields that can not be searched on or shown to the client * @param exculudedFields fields that can not be searched on or shown to the client
*/ */
public void setExcludedFields(Collection<String> exculudedFields) { public void setExcludedFields(Collection<String> exculudedFields) {
this.exculudedFields = exculudedFields; this.exculudedFields = exculudedFields;
...@@ -602,6 +604,8 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener { ...@@ -602,6 +604,8 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener {
* Returns the collection of field names that can be used to search for a * Returns the collection of field names that can be used to search for a
* user. Typical fields are username, name, and email. These values can be * user. Typical fields are username, name, and email. These values can be
* used to contruct a data form. * used to contruct a data form.
*
* @return the collection of field names that can be used to search.
*/ */
public Collection<String> getSearchPluginUserManagerSearchFields() { public Collection<String> getSearchPluginUserManagerSearchFields() {
return Arrays.asList("Username", "Name", "Email"); return Arrays.asList("Username", "Name", "Email");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment