home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / java / io / accesserrorhandler.java next >
Text File  |  1995-08-11  |  2KB  |  64 lines

  1. /*
  2.  * @(#)AccessErrorHandler.java    1.4 95/01/31 Sami Shaio
  3.  *
  4.  * Copyright (c) 1995 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19. package java.io;
  20.  
  21.  
  22. /**
  23.  * This class is used by the File access-control mechanism. If an
  24.  * access control exception occurs and an error handler was installed
  25.  * using the File.setAccessErrorHandler method, then the handler will
  26.  * get invoked to determine what course of action to take.
  27.  *
  28.  * @see File#setAccessErrorHandler
  29.  * @see File
  30.  * @version 1.4 31 Jan 1995
  31.  * @author Sami Shaio
  32.  */
  33. public class AccessErrorHandler {
  34.     /** Allow the current access and all subsequent ones. */
  35.     public final static int ALLOW_ACCESS = 0;
  36.  
  37.     /** Allow the current access only. */
  38.     public final static int ALLOW_THIS_ACCESS = 1;
  39.  
  40.     /** Deny the current access. */
  41.     public final static int DENY_ACCESS = 2;
  42.  
  43.     /**
  44.      * This method is invoked if a read operation was attempted on the
  45.      * given file and the acl check failed.
  46.      * @param f the File to be accessed.
  47.      * @returns one of ALLOW_ACCESS, ALLOW_THIS_ACCESS, or DENY_ACCESS
  48.      */
  49.     public int readException(String f) {
  50.     return DENY_ACCESS;
  51.     }
  52.  
  53.     /**
  54.      * This method is invoked if a write operation was attempted on the
  55.      * given file and the acl check failed.
  56.      * @param f the File to be accessed.
  57.      * @returns one of ALLOW_ACCESS, ALLOW_THIS_ACCESS, or DENY_ACCESS
  58.      */
  59.     public int writeException(String f) {
  60.     return DENY_ACCESS;
  61.     }
  62. }
  63.         
  64.