return properties;
}
protected void setupProperties(){
GrailsCxfEndpoint annotation = getClazz().getAnnotation(GrailsCxfEndpoint.class);
if(annotation != null && annotation.properties().length > 0) {
for(GrailsCxfEndpointProperty prop : annotation.properties()){
properties.put(prop.name(), prop.value());
}
log.debug("Endpoint [" + getFullName() + "] configured to use properties " + properties + ".");
}