* This method will be used to attach @BindingType annotation data to
* the <code>DescriptionBuilderComposite</code>
* @param composite - <code>DescriptionBuildercomposite</code>
*/
private void attachBindingTypeAnnotation(DescriptionBuilderComposite composite) {
BindingType bindingType = (BindingType) ConverterUtils.getAnnotation(
BindingType.class, serviceClass);
if(bindingType != null) {
// Attach @BindingType annotation data
BindingTypeAnnot btAnnot = BindingTypeAnnot.createBindingTypeAnnotImpl();
btAnnot.setValue(bindingType.value());
composite.setBindingTypeAnnot(btAnnot);
}
}