
org.cogchar.api.integroid.cue.BogeyCue Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.cogchar.api.integroid.cue;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author Stu B.
*/
public class BogeyCue extends PersonCue {
private static Logger theLogger = LoggerFactory.getLogger(BogeyCue.class.getName());
private String myBogeyID;
public BogeyCue(String bogeyID) {
super();
myBogeyID = bogeyID;
theLogger.info("Made BogeyCue with bogeyID=" + myBogeyID + " and sessionPersonID=" + fetchSessionCueID());
}
@Override public String getContentSummaryString() {
return "bogeyID=" + myBogeyID + ", " + super.getContentSummaryString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy