* Fetches the registered worfklow source file and extracts the Information that's located within the getDescription method for a given WFTemplate name
* parses it and stores this information within the bean.
*/
public void getWFDescriptionForTemplate(){
ExpTypeExecutablePP eTypeExecPP = (ExpTypeExecutablePP)ExpTypeBackingBean.getExpTypeBean(AdminManagerImpl.EXECUTABLEPP);
WftRegistryService wftRegistryService = WeeRemoteUtil.getInstance().getWeeRegistryService();
try {
byte[] bContent = wftRegistryService.getWFTemplate(eTypeExecPP.getWeeXMLConfig().getTemplate().getClazz());
if(bContent!=null){
String wfTemplateContent = new String(bContent);
String sDescription = eTypeExecPP.helperParseDescription(wfTemplateContent);
eTypeExecPP.setWFDescription(sDescription);
}