blob: 62ba8f601a7e8d7107b7e286bcd7e5d4a20446c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright 2014 Jesse Morgan
*/
package com.p4square.grow.provider;
import com.p4square.grow.model.RecordedAnswer;
/**
*
* @author Jesse Morgan <jesse@jesterpm.net>
*/
public interface ProvidesAssessments {
/**
* Provides a collection of user assessments.
* The collection key is the user id.
* The key is the question id.
*/
CollectionProvider<String, String, String> getAnswerProvider();
}
|