src/org/sonews/storage/StorageProvider.java
changeset 37 74139325d305
parent 35 ed84c8bdd87b
child 42 7f84f4de2893
     1.1 --- a/src/org/sonews/storage/StorageProvider.java	Sun Aug 29 17:28:58 2010 +0200
     1.2 +++ b/src/org/sonews/storage/StorageProvider.java	Sun Aug 29 18:17:37 2010 +0200
     1.3 @@ -26,15 +26,14 @@
     1.4  public interface StorageProvider
     1.5  {
     1.6  
     1.7 -  public boolean isSupported(String uri);
     1.8 +	public boolean isSupported(String uri);
     1.9  
    1.10 -  /**
    1.11 -   * This method returns the reference to the associated storage.
    1.12 -   * The reference MAY be unique for each thread. In any case it MUST be
    1.13 -   * thread-safe to use this method.
    1.14 -   * @return The reference to the associated Storage.
    1.15 -   */
    1.16 -  public Storage storage(Thread thread)
    1.17 -    throws StorageBackendException;
    1.18 -
    1.19 +	/**
    1.20 +	 * This method returns the reference to the associated storage.
    1.21 +	 * The reference MAY be unique for each thread. In any case it MUST be
    1.22 +	 * thread-safe to use this method.
    1.23 +	 * @return The reference to the associated Storage.
    1.24 +	 */
    1.25 +	public Storage storage(Thread thread)
    1.26 +		throws StorageBackendException;
    1.27  }