src/share/classes/java/security/GuardedObject.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 31,43 **** * * <p>A GuardedObject encapsulates a target object and a Guard object, * such that access to the target object is possible * only if the Guard object allows it. * Once an object is encapsulated by a GuardedObject, ! * access to that object is controlled by the <code>getObject</code> * method, which invokes the ! * <code>checkGuard</code> method on the Guard object that is * guarding access. If access is not allowed, * an exception is thrown. * * @see Guard * @see Permission --- 31,43 ---- * * <p>A GuardedObject encapsulates a target object and a Guard object, * such that access to the target object is possible * only if the Guard object allows it. * Once an object is encapsulated by a GuardedObject, ! * access to that object is controlled by the {@code getObject} * method, which invokes the ! * {@code checkGuard} method on the Guard object that is * guarding access. If access is not allowed, * an exception is thrown. * * @see Guard * @see Permission