/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.ohd.pophealth.json.clinicalmodel;
/**
*
* @author ohdohd
*/
public class Actor extends BaseObject{
public Actor(String id) {
super(id);
}
@Override
protected String getCategory(){
return "actor";
}
}