Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FileXmlDoc |
|
| 1.3333333333333333;1.333 |
1 | /** | |
2 | * Copyright 2005-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.rice.core.api.impex.xml; | |
17 | ||
18 | import java.io.File; | |
19 | import java.io.FileInputStream; | |
20 | import java.io.IOException; | |
21 | import java.io.InputStream; | |
22 | ||
23 | /** | |
24 | * An XmlDoc implementation backed by a physical XML File | |
25 | * @see org.kuali.rice.core.api.impex.xml.batch.XmlDoc | |
26 | * @see org.kuali.rice.core.api.impex.xml.impl.impex.BaseXmlDoc | |
27 | * @see org.kuali.rice.core.api.impex.xml.FileXmlDocCollection | |
28 | * @see org.kuali.rice.core.impl.impex.DirectoryXmlDocCollection | |
29 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
30 | */ | |
31 | 0 | public class FileXmlDoc extends BaseXmlDoc { |
32 | private File file; | |
33 | private String name; | |
34 | public FileXmlDoc(File file, XmlDocCollection collection) { | |
35 | 0 | this(file, file.getName(), collection); |
36 | 0 | this.file = file; |
37 | 0 | } |
38 | public FileXmlDoc(File file, String name, XmlDocCollection collection) { | |
39 | 0 | super(collection); |
40 | 0 | this.file = file; |
41 | 0 | this.name = name; |
42 | 0 | } |
43 | public String getName() { | |
44 | 0 | return name; |
45 | } | |
46 | public InputStream getStream() throws IOException { | |
47 | 0 | return new FileInputStream(file); |
48 | } | |
49 | public int hashCode() { | |
50 | 0 | return file.hashCode(); |
51 | } | |
52 | public boolean equals(Object o) { | |
53 | 0 | if (!(o instanceof FileXmlDoc)) return false; |
54 | 0 | return file.equals(((FileXmlDoc) o).file); |
55 | } | |
56 | } |