Description description = moduleClass.getAnnotation(Description.class);
String descrStr = null;
if (description != null) {
descrStr = description.value();
}
Status status = moduleClass.getAnnotation(Status.class);
ModuleDescription module = new ModuleDescription(moduleClass, categoryStr, descrStr, status);
Object newInstance = null;
try {