Owner.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* Owner.java -- ACL owner
  2. Copyright (C) 1998 Free Software Foundation, Inc.
  3. This file is part of GNU Classpath.
  4. GNU Classpath is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. GNU Classpath is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Classpath; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301 USA.
  16. Linking this library statically or dynamically with other modules is
  17. making a combined work based on this library. Thus, the terms and
  18. conditions of the GNU General Public License cover the whole
  19. combination.
  20. As a special exception, the copyright holders of this library give you
  21. permission to link this library with independent modules to produce an
  22. executable, regardless of the license terms of these independent
  23. modules, and to copy and distribute the resulting executable under
  24. terms of your choice, provided that you also meet, for each linked
  25. independent module, the terms and conditions of the license of that
  26. module. An independent module is a module which is not derived from
  27. or based on this library. If you modify this library, you may extend
  28. this exception to your version of the library, but you are not
  29. obligated to do so. If you do not wish to do so, delete this
  30. exception statement from your version. */
  31. package java.security.acl;
  32. import java.security.Principal;
  33. /**
  34. * This interface provides a mechanism for maintaining a list of owners
  35. * of an access control list (ACL). Since a <code>Principal</code> must
  36. * be an owner in order to modify the owner list, a mechanism must be
  37. * provided to specify the initial owner of the ACL. The proper way to do
  38. * this is for the implementing class to specify the initial owner in
  39. * the contructor for that class.
  40. *
  41. * @version 0.0
  42. *
  43. * @author Aaron M. Renn (arenn@urbanophile.com)
  44. */
  45. public interface Owner
  46. {
  47. /**
  48. * This method adds an owner to the access control list (ACL). Only a
  49. * <code>Principal</code> who is already an owner can perform this operation.
  50. *
  51. * @param caller The <code>Principal</code> who is requesting that an owner be added
  52. * @param owner The <code>Principal</code> to add as a new owner
  53. *
  54. * @param <code>true</code> if the new owner was successfully added or <code>false</code> if the specified new owner is already an owner
  55. *
  56. * @exception NotOwnerException If the caller is not already an owner of this ACL
  57. */
  58. boolean addOwner(Principal caller, Principal owner)
  59. throws NotOwnerException;
  60. /**
  61. * This method delets an owner from the access control list (ACL). Only a
  62. * <code>Principal</code> who is an owner can perform this operation. An
  63. * owner can delete itself from the list. If there is only one
  64. * owner remaining on this list, any attempt to delete it will throw an
  65. * exception.
  66. *
  67. * @param caller The <code>Principal</code> who is requesting that an owner be deleted
  68. * @param owner The <code>Principal</code> to delete as an owner
  69. *
  70. * @param <code>true</code> if the new owner was successfully deleted or <code>false</code> if the specified owner is not currently an owner
  71. *
  72. * @exception NotOwnerException If the caller is not already an owner of this ACL
  73. * @exception LastOwnerException If completing the operation would delete the last ACL owner
  74. */
  75. boolean deleteOwner(Principal caller, Principal owner)
  76. throws NotOwnerException, LastOwnerException;
  77. /**
  78. * This method tests whether or not a given <code>Principal</code> is an
  79. * owner of this access control list (ACL).
  80. *
  81. * @return <code>true</code> if the <code>Principal</code> is an owner, <code>false</code> otherwise
  82. */
  83. boolean isOwner(Principal owner);
  84. }