1 | |
package org.kuali.student.common.assembly.transform; |
2 | |
|
3 | |
import java.util.Map; |
4 | |
|
5 | 0 | public class DocumentTypeConfiguration { |
6 | |
private String documentType; |
7 | |
private Map<String, String> docContentFieldMap; |
8 | |
private String defaultDocumentTitle; |
9 | |
|
10 | |
public Map<String, String> getDocContentFieldMap() { |
11 | 0 | return docContentFieldMap; |
12 | |
} |
13 | |
|
14 | |
public void setDocContentFieldMap(Map<String, String> docContentFieldMap) { |
15 | 0 | this.docContentFieldMap = docContentFieldMap; |
16 | 0 | } |
17 | |
|
18 | |
public String getDefaultDocumentTitle() { |
19 | 0 | return defaultDocumentTitle; |
20 | |
} |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
public void setDefaultDocumentTitle(String defaultDocumentTitle) { |
29 | 0 | this.defaultDocumentTitle = defaultDocumentTitle; |
30 | 0 | } |
31 | |
|
32 | |
public String getDocumentType() { |
33 | 0 | return documentType; |
34 | |
} |
35 | |
|
36 | |
public void setDocumentType(String documentType) { |
37 | 0 | this.documentType = documentType; |
38 | 0 | } |
39 | |
|
40 | |
} |