/* * Copyright (C) 2006-2008 Alfresco Software Limited. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * As a special exception to the terms and conditions of version 2.0 of * the GPL, you may redistribute this Program in connection with Free/Libre * and Open Source Software ("FLOSS") applications as described in Alfresco's * FLOSS exception. You should have recieved a copy of the text describing * the FLOSS exception, and it is also available here: * http://www.alfresco.com/legal/licensing" */ package org.alfresco.jlan.server.filesys.pseudo; import java.io.IOException; import org.alfresco.jlan.server.filesys.AccessDeniedException; import org.alfresco.jlan.server.filesys.FileAttribute; import org.alfresco.jlan.server.filesys.NetworkFile; /** * Pseudo Folder Network File Class * * <p> * Represents an open pseudo folder. * * @author gkspencer */ public class PseudoFolderNetworkFile extends NetworkFile { /** * Class constructor. * * @param name String */ public PseudoFolderNetworkFile(String name) { super(name); setAttributes(FileAttribute.Directory); } /** * Class constructor. * * @param name String * @param relPath String */ public PseudoFolderNetworkFile(String name, String relPath) { super(name); setFullName(relPath); setAttributes(FileAttribute.Directory); } /** * Close the network file. */ public void closeFile() throws java.io.IOException { // Nothing to do } /** * Return the current file position. * * @return long */ public long currentPosition() { return 0L; } /** * Flush the file. * * @exception IOException */ public void flushFile() throws IOException { // Nothing to do } /** * Determine if the end of file has been reached. * * @return boolean */ public boolean isEndOfFile() throws IOException { return true; } /** * Open the file. * * @param createFlag boolean * @exception IOException */ public void openFile(boolean createFlag) throws IOException { } /** * Read from the file. * * @param buf byte[] * @param len int * @param pos int * @param fileOff long * @return Length of data read. * @exception IOException */ public int readFile(byte[] buf, int len, int pos, long fileOff) throws IOException { throw new AccessDeniedException("Attempt to read/write folder file"); } /** * Seek to the specified file position. * * @param pos long * @param typ int * @return long * @exception IOException */ public long seekFile(long pos, int typ) throws IOException { throw new AccessDeniedException("Attempt to read/write folder file"); } /** * Truncate the file * * @param siz long * @exception IOException */ public void truncateFile(long siz) throws IOException { throw new AccessDeniedException("Attempt to read/write folder file"); } /** * Write a block of data to the file. * * @param buf byte[] * @param len int * @exception IOException */ public void writeFile(byte[] buf, int len, int pos) throws IOException { throw new AccessDeniedException("Attempt to read/write folder file"); } /** * Write a block of data to the file. * * @param buf byte[] * @param len int * @param pos int * @param offset long * @exception IOException */ public void writeFile(byte[] buf, int len, int pos, long offset) throws IOException { throw new AccessDeniedException("Attempt to read/write folder file"); } }