1 /*
2 * Copyright 2011 The Kuali Foundation.
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.ole.pojo.dublin.unqualified;
17
18 import org.kuali.ole.docstore.model.xmlpojo.work.bib.dublin.unqualified.ListRecords;
19
20 /**
21 * Represents an XML Record of category:Work, Type:Bibliographic, Format:DUBLIN_UNQUALIFIED
22 *
23 * @author Poornima
24 */
25 public class UnQualifiedDublinRecord {
26
27 private String responseDate;
28 private String request;
29 private ListRecords ListRecords;
30
31 /**
32 * @return the ListRecords
33 */
34 public ListRecords getListRecords() {
35 return ListRecords;
36 }
37
38 /**
39 * @param listRecords the ListRecords to set
40 */
41 public void setListRecords(ListRecords listRecords) {
42 this.ListRecords = listRecords;
43 }
44
45 /**
46 * @return the responseDate
47 */
48 public String getResponseDate() {
49 return responseDate;
50 }
51
52 /**
53 * @param responseDate the responseDate to set
54 */
55 public void setResponseDate(String responseDate) {
56 this.responseDate = responseDate;
57 }
58
59 /**
60 * @return the request
61 */
62 public String getRequest() {
63 return request;
64 }
65
66 /**
67 * @param request the request to set
68 */
69 public void setRequest(String request) {
70 this.request = request;
71 }
72
73 @Override
74 public String toString() {
75
76 return request + ", " + responseDate + ", " + ListRecords;
77 }
78
79 }