1 2 11 12 package org.objectweb.rmijdbc; 13 14 import java.io.FileDescriptor ; 15 import java.rmi.*; 16 17 32 33 public class RJRMISecurityManager 34 extends RMISecurityManager { 35 36 39 public void checkRead(FileDescriptor fd) 40 throws java.lang.SecurityException { 41 return; 42 } 43 44 47 public void checkRead(String file) 48 throws java.lang.SecurityException { 49 return; 50 } 51 52 55 public void checkRead(String file, Object context) 56 throws java.lang.SecurityException { 57 return; 58 } 59 60 63 public void checkWrite(FileDescriptor fd) 64 throws java.lang.SecurityException { 65 return; 66 } 67 68 71 public void checkWrite(String file) 72 throws java.lang.SecurityException { 73 return; 74 } 75 76 79 public void checkDelete(String file) 80 throws java.lang.SecurityException { 81 return; 82 } 83 84 87 public synchronized void checkCreateClassLoader() 88 throws java.lang.SecurityException { 89 return; 90 } 91 92 95 public void checkMemberAccess(Class clazz, int which) 96 { 97 return; 98 } 99 100 103 public synchronized void checkExec(String cmd) 104 { 105 return; 106 } 107 108 111 public void checkPropertyAccess(String key) 112 { 113 return; 114 } 115 116 119 public void checkPropertiesAccess() 120 { 121 return; 122 } 123 } 124 | Popular Tags |