[jboss-cvs] JBossAS SVN: r62897 - in projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization: resources and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue May 8 17:11:30 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-05-08 17:11:30 -0400 (Tue, 08 May 2007)
New Revision: 62897

Added:
   projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/
   projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/EJBResource.java
   projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/WebResource.java
Log:
resources for the ejb and web layer

Added: projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/EJBResource.java
===================================================================
--- projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/EJBResource.java	                        (rev 0)
+++ projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/EJBResource.java	2007-05-08 21:11:30 UTC (rev 62897)
@@ -0,0 +1,83 @@
+/*
+  * JBoss, Home of Professional Open Source
+  * Copyright 2005, JBoss Inc., and individual contributors as indicated
+  * by the @authors tag. See the copyright.txt in the distribution for a
+  * full listing of individual contributors.
+  *
+  * This is free software; you can redistribute it and/or modify it
+  * under the terms of the GNU Lesser General Public License as
+  * published by the Free Software Foundation; either version 2.1 of
+  * the License, or (at your option) any later version.
+  *
+  * This software 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
+  * Lesser General Public License for more details.
+  *
+  * You should have received a copy of the GNU Lesser General Public
+  * License along with this software; if not, write to the Free
+  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+  */
+package org.jboss.security.authorization.resources;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.jboss.security.authorization.Resource;
+import org.jboss.security.authorization.ResourceType;
+
+//$Id: EJBResource.java 61962 2007-04-01 04:45:57Z anil.saldhana at jboss.com $
+
+/**
+ *  Represents an EJB Resource
+ *  @author <a href="mailto:Anil.Saldhana at jboss.org">Anil Saldhana</a>
+ *  @since  Jul 6, 2006 
+ *  @version $Revision: 61962 $
+ */
+public class EJBResource implements Resource
+{ 
+   private Map<String,Object> map = new HashMap<String,Object>();
+   
+   /**
+    * Create a new EJBResource.
+    * 
+    * @param map
+    */
+   public EJBResource(Map map)
+   {
+     this.map = map;   
+   }
+
+   /**
+    * @see Resource#getLayer()
+    */
+   public ResourceType getLayer()
+   {
+      return ResourceType.EJB;
+   }
+
+   /**
+    * @see Resource#getMap()
+    */
+   public Map<String,Object> getMap()
+   {
+      return this.map;
+   } 
+  
+   /**
+    * Set the contextual map
+    * @param m Contextual Map
+    */
+   public void setMap(Map<String,Object> m)
+   {
+      this.map = m;
+   }
+   
+   public String toString()
+   {
+      StringBuffer buf = new StringBuffer();
+      buf.append("[").append(getClass().getName()).append(":contextMap=").append(map).append("]");
+      return buf.toString();
+   }
+}

Added: projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/WebResource.java
===================================================================
--- projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/WebResource.java	                        (rev 0)
+++ projects/security/security-jboss-sx/trunk/src/main/org/jboss/security/authorization/resources/WebResource.java	2007-05-08 21:11:30 UTC (rev 62897)
@@ -0,0 +1,91 @@
+/*
+  * JBoss, Home of Professional Open Source
+  * Copyright 2005, JBoss Inc., and individual contributors as indicated
+  * by the @authors tag. See the copyright.txt in the distribution for a
+  * full listing of individual contributors.
+  *
+  * This is free software; you can redistribute it and/or modify it
+  * under the terms of the GNU Lesser General Public License as
+  * published by the Free Software Foundation; either version 2.1 of
+  * the License, or (at your option) any later version.
+  *
+  * This software 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
+  * Lesser General Public License for more details.
+  *
+  * You should have received a copy of the GNU Lesser General Public
+  * License along with this software; if not, write to the Free
+  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+  */
+package org.jboss.security.authorization.resources;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.jboss.security.authorization.Resource;
+import org.jboss.security.authorization.ResourceType;
+
+//$Id: WebResource.java 62260 2007-04-11 16:32:33Z anil.saldhana at jboss.com $
+
+/**
+ *  Represents a Resource for the Web Layer
+ *  @author <a href="mailto:Anil.Saldhana at jboss.org">Anil Saldhana</a>
+ *  @since  Jun 18, 2006 
+ *  @version $Revision: 62260 $
+ */
+public class WebResource implements Resource
+{
+   private Map map = new HashMap();
+   
+   /**
+    * Create a new WebResource.
+    */
+   public WebResource()
+   {   
+   }
+   
+   /**
+    * 
+    * Create a new WebResource.
+    * 
+    * @param map Contextual Map
+    */
+   public WebResource(Map map)
+   {
+      this.map = map;
+   }
+
+   /**
+    * @see Resource#getLayer()
+    */
+   public ResourceType getLayer()
+   {
+      return ResourceType.WEB;
+   }
+
+   /**
+    * @see Resource#getMap()
+    */
+   public Map getMap()
+   {
+      return map;
+   }
+ 
+   /**
+    * Set the contextual map
+    * @param m Contextual Map
+    */
+   public void setMap(Map m)
+   {
+      this.map = m;
+   } 
+   
+   public String toString()
+   {
+      StringBuffer buf = new StringBuffer();
+      buf.append("[").append(getClass().getName()).append(":contextMap=").append(map).append("]");
+      return buf.toString();
+   }
+}




More information about the jboss-cvs-commits mailing list