public class PersonService extends AbstractDaoService {
@Path("{personId}")
@GET
@Produces(MediaType.APPLICATION_JSON)
public PersonProfile getPersonProfile(@PathParam(“sourceKey”) String sourceKey, @PathParam(“personId”) String personId)
{
final PersonProfile profile = new PersonProfile();
Source source = getSourceRepository().findBySourceKey(sourceKey);
String tableQualifier = source.getTableQualifier(SourceDaimon.DaimonType.Vocabulary);
DaimonType should be CDM