Subversion Repositories bacoAlunos

Rev

Rev 1306 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
671 jmachado 1
package pt.estgp.estgweb.domain;
2
 
3
import org.apache.log4j.Logger;
4
 
5
import java.io.Serializable;
6
import java.util.List;
7
 
8
/**
9
 * @author: Duarte Santos
10
 * @date: 09-05-2011
11
 * @time: 23:41
12
 * @email: a12564 [at] estgp [dot] pt
13
 */
14
 
15
public class SurveyQuestionCandidateAnswerImpl extends SurveyQuestionCandidateAnswer
16
{
17
    private static final 1.5.0/docs/api/java/util/logging/Logger.html">Logger logger = 1.5.0/docs/api/java/util/logging/Logger.html">Logger.getLogger(SurveyQuestionCandidateAnswerImpl.class);
18
 
19
    @1.5.0/docs/api/java/lang/Override.html">Override
20
    public GenericUser getOwner() {
21
        return null;
22
    }
23
 
24
    @1.5.0/docs/api/java/lang/Override.html">Override
25
    public List<String> getOwnerRoles() {
26
        logger.warn("Invoke not implemented method in class:" + getClass().getName());
27
        return null;
28
    }
29
 
30
    public 1.5.0/docs/api/java/lang/String.html">String getChoosedOwnerRole() {
31
        logger.warn("Invoke not implemented method in class:" + getClass().getName());
32
        return null;
33
    }
34
 
35
    @1.5.0/docs/api/java/lang/Override.html">Override
36
    public 1.5.0/docs/api/java/io/Serializable.html">Serializable getSerializable() {
37
        return getId();
38
    }
39
}