summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Marshall <csm@gnu.org>2006-06-28 23:14:00 +0000
committerCasey Marshall <csm@gnu.org>2006-06-28 23:14:00 +0000
commitf723b221837688a6e8a3da6003e132e094ca3d9f (patch)
tree46e687cc2a3b9e6817a4e7df80e93f8ae84fb1a6
parent60faad375482d21b9696b3bc05346a9b4e6e5467 (diff)
downloadclasspath-f723b221837688a6e8a3da6003e132e094ca3d9f.tar.gz
2006-06-28 Casey Marshall <csm@gnu.org>
* gnu/java/security/Requires.java: new annotation. * gnu/java/security/action/GetSecurityPropertyAction.java: implement PrivilegedAction<String>. (run): return String.
-rw-r--r--ChangeLog-ssl-nio7
-rw-r--r--gnu/java/security/Requires.java59
-rw-r--r--gnu/java/security/action/GetSecurityPropertyAction.java4
3 files changed, 68 insertions, 2 deletions
diff --git a/ChangeLog-ssl-nio b/ChangeLog-ssl-nio
index 22b72c478..8e37c5075 100644
--- a/ChangeLog-ssl-nio
+++ b/ChangeLog-ssl-nio
@@ -1,5 +1,12 @@
2006-06-28 Casey Marshall <csm@gnu.org>
+ * gnu/java/security/Requires.java: new annotation.
+ * gnu/java/security/action/GetSecurityPropertyAction.java:
+ implement PrivilegedAction<String>.
+ (run): return String.
+
+2006-06-28 Casey Marshall <csm@gnu.org>
+
* gnu/java/io/ByteBufferOutputStream.java: new file.
2006-06-28 Casey Marshall <csm@gnu.org>
diff --git a/gnu/java/security/Requires.java b/gnu/java/security/Requires.java
new file mode 100644
index 000000000..c820336c0
--- /dev/null
+++ b/gnu/java/security/Requires.java
@@ -0,0 +1,59 @@
+/* Requires.java -- mark methods as requiring permission.
+ Copyright (C) 2006 Free Software Foundation, Inc.
+
+This file is a part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at
+your option) any later version.
+
+GNU Classpath is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Classpath; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
+USA
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version. */
+
+
+package gnu.java.security;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.RetentionPolicy.CLASS;
+import java.security.Permission;
+
+/**
+ *
+ *
+ * @author Casey Marshall (csm@gnu.org)
+ */
+@Documented @Retention(CLASS) @Target(METHOD)
+public @interface Requires
+{
+ Class<? extends Permission> permissionClass();
+ String target();
+ String action();
+}
diff --git a/gnu/java/security/action/GetSecurityPropertyAction.java b/gnu/java/security/action/GetSecurityPropertyAction.java
index 97fa15d03..ac928ca33 100644
--- a/gnu/java/security/action/GetSecurityPropertyAction.java
+++ b/gnu/java/security/action/GetSecurityPropertyAction.java
@@ -50,7 +50,7 @@ import java.security.Security;
* String passwd = AccessController.doPrivileged(action);
* </code>
*/
-public class GetSecurityPropertyAction implements PrivilegedAction
+public class GetSecurityPropertyAction implements PrivilegedAction<String>
{
private String name;
private String value;
@@ -83,7 +83,7 @@ public class GetSecurityPropertyAction implements PrivilegedAction
return this;
}
- public Object run()
+ public String run()
{
String val = Security.getProperty(name);
if (val == null)