Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / spring / src / main / java / org / wamblee / system / spring / StringResource.java
1 /*
2  * Copyright 2007 the original author or authors.
3  *
4  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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.wamblee.system.spring;
17
18 import org.springframework.core.io.Resource;
19
20 import java.io.ByteArrayInputStream;
21 import java.io.File;
22 import java.io.IOException;
23 import java.io.InputStream;
24
25 import java.net.URL;
26
27 /**
28  * 
29  * @author $author$
30  * @version $Revision$
31  */
32 class StringResource implements Resource {
33     private String _value;
34
35     /**
36      * Creates a new StringResource object.
37      * 
38      */
39     public StringResource(String aValue) {
40         _value = aValue;
41     }
42
43     @Override
44     public Resource createRelative(String aRelativePath) throws IOException {
45         throw new IOException("No relative resource possible");
46     }
47
48     @Override
49     public boolean exists() {
50         return false;
51     }
52
53     @Override
54     public String getDescription() {
55         return "Properties of a spring component";
56     }
57
58     @Override
59     public File getFile() throws IOException {
60         throw new IOException();
61     }
62
63     @Override
64     public String getFilename() {
65         return "springcomponent.properties";
66     }
67
68     @Override
69     public URL getURL() throws IOException {
70         throw new IOException();
71     }
72
73     @Override
74     public boolean isOpen() {
75         return false;
76     }
77
78     @Override
79     public InputStream getInputStream() throws IOException {
80         return new ByteArrayInputStream(_value.getBytes());
81     }
82 }