src/org/sonews/storage/StorageProvider.java
author cli
Mon Jun 06 20:12:21 2011 +0200 (2011-06-06)
changeset 42 7f84f4de2893
parent 37 74139325d305
permissions -rwxr-xr-x
Add HSQLDB stubs and reformat some source files.
chris@3
     1
/*
chris@3
     2
 *   SONEWS News Server
chris@3
     3
 *   see AUTHORS for the list of contributors
chris@3
     4
 *
chris@3
     5
 *   This program is free software: you can redistribute it and/or modify
chris@3
     6
 *   it under the terms of the GNU General Public License as published by
chris@3
     7
 *   the Free Software Foundation, either version 3 of the License, or
chris@3
     8
 *   (at your option) any later version.
chris@3
     9
 *
chris@3
    10
 *   This program is distributed in the hope that it will be useful,
chris@3
    11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
chris@3
    12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
chris@3
    13
 *   GNU General Public License for more details.
chris@3
    14
 *
chris@3
    15
 *   You should have received a copy of the GNU General Public License
chris@3
    16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
chris@3
    17
 */
chris@3
    18
package org.sonews.storage;
chris@3
    19
chris@3
    20
/**
cli@20
    21
 * Provides access to storage backend instances.
chris@3
    22
 * @author Christian Lins
chris@3
    23
 * @since sonews/1.0
chris@3
    24
 */
cli@42
    25
public interface StorageProvider {
chris@3
    26
cli@37
    27
	public boolean isSupported(String uri);
chris@3
    28
cli@37
    29
	/**
cli@37
    30
	 * This method returns the reference to the associated storage.
cli@37
    31
	 * The reference MAY be unique for each thread. In any case it MUST be
cli@37
    32
	 * thread-safe to use this method.
cli@37
    33
	 * @return The reference to the associated Storage.
cli@37
    34
	 */
cli@37
    35
	public Storage storage(Thread thread)
cli@42
    36
			throws StorageBackendException;
chris@3
    37
}