return manualExpose;
}
protected void buildExclusionSet() {
final Set<String> groovyExcludes = DEFAULT_GROOVY_EXCLUDES;
GrailsCxfEndpoint annotation = getClazz().getAnnotation(GrailsCxfEndpoint.class);
Set<String> aggExcludes = new HashSet<String>();
List<String> automaticExcludes = buildAutomaticExcludes();
aggExcludes.addAll(groovyExcludes);
aggExcludes.addAll(automaticExcludes);
if(annotation != null && annotation.excludes().length > 0) {
buildExclusionSetFromAnnotation(aggExcludes, annotation);
} else {
buildExclusionSetFromProperty(aggExcludes);
}