Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DocumentBinary |
|
| 1.0;1 |
1 | package org.kuali.student.r2.core.document.infc; | |
2 | ||
3 | /** | |
4 | * The encoded document. The expectation is that this could be a | |
5 | * base64 encoding. | |
6 | * | |
7 | * @Version 2.0 | |
8 | * @Author Sri komandur@uw.edu | |
9 | * | |
10 | */ | |
11 | public interface DocumentBinary { | |
12 | /** | |
13 | * Encoded document | |
14 | * | |
15 | * @name Binary | |
16 | * @required | |
17 | * | |
18 | */ | |
19 | public String getBinary(); | |
20 | } |