Package com.semagia.atomico.server.storage

Examples of com.semagia.atomico.server.storage.IStorage


     *
     * @return A {@link IModifiableStorage}.
     * @throws WebApplicationException If the storage is not modifiable.
     */
    protected IModifiableStorage getModifiableStorage() throws WebApplicationException {
        final IStorage storage = getStorage();
        if (!storage.isModifiable()) {
            throw new WebApplicationException(ResponseUtils.methodNotAllowed());
        }
        return (IModifiableStorage) storage;
    }
View Full Code Here

TOP

Related Classes of com.semagia.atomico.server.storage.IStorage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.