// ************************************************************************ // $Id: RealtimeSecurity.java 561 2005-07-11 20:09:17Z mdeters $ // ************************************************************************ // // jRate // // Copyright (C) 2001-2005 by Angelo Corsaro. // // All Rights Reserved. // // Permission to use, copy, modify, and distribute this software and // its documentation for any purpose is hereby granted without fee, // provided that the above copyright notice appear in all copies and // that both that copyright notice and this permission notice appear // in supporting documentation. I don't make any representations // about the suitability of this software for any purpose. It is // provided "as is" without express or implied warranty. // // // ************************************************************************* // // ************************************************************************* package javax.realtime; /** * jRate security policies. * * @author Morgan Deters * @version 1.0 * @since 0.3.8 */ public class RealtimeSecurity { /** * Constructs a RealtimeSecurity object. */ public RealtimeSecurity() {} /** * Check whether the application may access physical memory in the * specified range. * * @throws SecurityException */ public void checkAccessPhysical() { // always allow for now } /** * Check whether the application may access physical memory in the * specified range. * * @throws SecurityException */ public void checkAccessPhysicalRange(long base, long size) { checkAccessPhysical(); // always allow for now } /** * Check whether the application may set filters. * * @throws SecurityException */ public void checkSetFilter() { // always allow for now } /** * Check whether the application may set the scheduling policy. * * @throws SecurityException */ public void checkSetScheduler() { // always allow for now } }