X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fspring%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fspring%2FStringResource.java;h=5f2597c1642a4aebf0fea08138592ee5e72f5ffe;hb=17775e14ecfb286e59f67117e5cee7e21e95ab1f;hp=5429d6cd715dd18d5e65dc74d6959eec3fd920d2;hpb=ddd261f331280640c5b53c7128230b629ebcd268;p=utils diff --git a/system/spring/src/main/java/org/wamblee/system/spring/StringResource.java b/system/spring/src/main/java/org/wamblee/system/spring/StringResource.java index 5429d6cd..5f2597c1 100644 --- a/system/spring/src/main/java/org/wamblee/system/spring/StringResource.java +++ b/system/spring/src/main/java/org/wamblee/system/spring/StringResource.java @@ -1,18 +1,18 @@ /* - * Copyright 2007 the original author or authors. - * + * Copyright 2005-2010 the original author or authors. + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.system.spring; import org.springframework.core.io.Resource; @@ -24,114 +24,57 @@ import java.io.InputStream; import java.net.URL; - /** - * DOCUMENT ME! - * + * * @author $author$ * @version $Revision$ */ class StringResource implements Resource { - /** - * DOCUMENT ME! - */ private String _value; -/** + /** * Creates a new StringResource object. - * - * @param aValue DOCUMENT ME! + * */ public StringResource(String aValue) { _value = aValue; } - /** - * DOCUMENT ME! - * - * @param aRelativePath DOCUMENT ME! - * - * @return DOCUMENT ME! - * - * @throws IOException DOCUMENT ME! - */ @Override - public Resource createRelative(String aRelativePath) - throws IOException { + public Resource createRelative(String aRelativePath) throws IOException { throw new IOException("No relative resource possible"); } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public boolean exists() { return false; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public String getDescription() { return "Properties of a spring component"; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - * - * @throws IOException DOCUMENT ME! - */ @Override public File getFile() throws IOException { throw new IOException(); } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public String getFilename() { return "springcomponent.properties"; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - * - * @throws IOException DOCUMENT ME! - */ @Override public URL getURL() throws IOException { throw new IOException(); } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public boolean isOpen() { return false; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - * - * @throws IOException DOCUMENT ME! - */ @Override public InputStream getInputStream() throws IOException { return new ByteArrayInputStream(_value.getBytes());