| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.core.document.dto; |
| 17 |
|
|
| 18 |
|
import java.io.Serializable; |
| 19 |
|
import java.util.ArrayList; |
| 20 |
|
import java.util.Date; |
| 21 |
|
import java.util.HashMap; |
| 22 |
|
import java.util.List; |
| 23 |
|
import java.util.Map; |
| 24 |
|
|
| 25 |
|
import javax.xml.bind.annotation.XmlAccessType; |
| 26 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
| 27 |
|
import javax.xml.bind.annotation.XmlAttribute; |
| 28 |
|
import javax.xml.bind.annotation.XmlElement; |
| 29 |
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
| 30 |
|
|
| 31 |
|
import org.kuali.student.common.dto.MetaInfo; |
| 32 |
|
import org.kuali.student.common.dto.RichTextInfo; |
| 33 |
|
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
| 45 |
|
public class DocumentBinaryInfo implements Serializable { |
| 46 |
|
|
| 47 |
|
private static final long serialVersionUID = 1L; |
| 48 |
|
|
| 49 |
|
@XmlElement |
| 50 |
|
private String binary; |
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 55 |
0
|
public String getBinary() {... |
| 56 |
0
|
return binary; |
| 57 |
|
} |
| 58 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 59 |
0
|
public void setBinary(String binary) {... |
| 60 |
0
|
this.binary = binary; |
| 61 |
|
} |
| 62 |
|
} |