Class PersonalInformationExtractor
- java.lang.Object
 - 
- com.atlassian.confluence.impl.search.v2.extractor.PersonalInformationExtractor
 
 
- 
- All Implemented Interfaces:
 Extractor2
public class PersonalInformationExtractor extends Object implements Extractor2
Extracts indexed and stored fields relating to personal information.- Since:
 - 7.17
 
 
- 
- 
Constructor Summary
Constructors Constructor Description PersonalInformationExtractor(UserAccessor userAccessor, PermissionManager permissionManager) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<FieldDescriptor>extractFields(Object searchable)Extract fields from the searchable object.StringBuilderextractText(Object searchable)Returns a buffer of text that will be appended onto the end of a larger buffer of text that will eventually become the searchable body text. 
 - 
 
- 
- 
Constructor Detail
- 
PersonalInformationExtractor
public PersonalInformationExtractor(UserAccessor userAccessor, PermissionManager permissionManager)
 
 - 
 
- 
Method Detail
- 
extractText
public StringBuilder extractText(Object searchable)
Description copied from interface:Extractor2Returns a buffer of text that will be appended onto the end of a larger buffer of text that will eventually become the searchable body text.- Specified by:
 extractTextin interfaceExtractor2- Parameters:
 searchable- a searchable object- Returns:
 - Returns a buffer of text that will be appended onto the end of a larger buffer of text that will eventually become the searchable body text.
 
 
- 
extractFields
public Collection<FieldDescriptor> extractFields(Object searchable)
Description copied from interface:Extractor2Extract fields from the searchable object.- Specified by:
 extractFieldsin interfaceExtractor2- Parameters:
 searchable- a searchable object- Returns:
 - list of fields extracted from the searchable object
 
 
 - 
 
 -