in slingshot/src/main/java/org/apache/sling/sample/slingshot/model/UserInfo.java [36:46]
public String getName() {
String value = this.getProperties().get(PROPERTY_NAME, String.class);
if ( value == null ) {
if ( resource != null ) {
value = resource.getParent().getName();
} else {
value = "No Title";
}
}
return value;
}