You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(544) |
May
(1715) |
Jun
(1059) |
Jul
(886) |
Aug
(1214) |
Sep
(1375) |
Oct
(1664) |
Nov
(1153) |
Dec
(1084) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(1630) |
Feb
(1634) |
Mar
(1979) |
Apr
(1119) |
May
(1850) |
Jun
(1231) |
Jul
(1168) |
Aug
(1840) |
Sep
(1038) |
Oct
(1127) |
Nov
(1458) |
Dec
(854) |
2004 |
Jan
(1145) |
Feb
(1064) |
Mar
(2242) |
Apr
(1728) |
May
(1346) |
Jun
(1280) |
Jul
(1681) |
Aug
(2388) |
Sep
(2233) |
Oct
(3246) |
Nov
(3248) |
Dec
(1775) |
2005 |
Jan
(3407) |
Feb
(3049) |
Mar
(2402) |
Apr
(3687) |
May
(3289) |
Jun
(5731) |
Jul
(3905) |
Aug
(5843) |
Sep
(5149) |
Oct
(6866) |
Nov
(4051) |
Dec
(4646) |
2006 |
Jan
(7356) |
Feb
(4713) |
Mar
(9447) |
Apr
(6553) |
May
(6206) |
Jun
(4301) |
Jul
(1160) |
Aug
(23) |
Sep
(11) |
Oct
(19) |
Nov
(26) |
Dec
(15) |
2007 |
Jan
(28) |
Feb
(24) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Anil S. <ani...@jb...> - 2006-07-07 16:35:21
|
User: asaldhana Date: 06/07/07 12:35:19 Modified: src/main/org/jboss/ejb EjbModule.java Log: JBAS-3374: Register/Unregister any available xacml policies Revision Changes Path 1.72 +37 -5 jboss/src/main/org/jboss/ejb/EjbModule.java (In the diff below, changes in quantity of whitespace are not shown.) Index: EjbModule.java =================================================================== RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/EjbModule.java,v retrieving revision 1.71 retrieving revision 1.72 diff -u -b -r1.71 -r1.72 --- EjbModule.java 3 Jul 2006 13:25:26 -0000 1.71 +++ EjbModule.java 7 Jul 2006 16:35:19 -0000 1.72 @@ -65,7 +65,11 @@ import org.jboss.ejb.plugins.SecurityProxyInterceptor; import org.jboss.ejb.plugins.StatefulSessionInstancePool; import org.jboss.security.AuthenticationManager; +import org.jboss.security.AuthorizationManager; import org.jboss.security.RealmMapping; +import org.jboss.security.Util; +import org.jboss.security.authorization.PolicyRegistration; +import org.jboss.security.plugins.AuthorizationManagerServiceMBean; import org.jboss.system.Registry; import org.jboss.system.ServiceControllerMBean; import org.jboss.system.ServiceMBeanSupport; @@ -93,7 +97,8 @@ * @author <a href="mailto:rev...@im...">Francisco Reverbel</a> * @author <a href="mailto:Adr...@Ha...">Adrian.Brock</a> * @author <a href="mailto:Sco...@jb...">Scott Stark</a> - * @version $Revision: 1.71 $ + * @author <a href="mailto:Ani...@jb...">Anil Saldhana</a> + * @version $Revision: 1.72 $ * * @jmx:mbean extends="org.jboss.system.ServiceMBean" */ @@ -154,6 +159,8 @@ /** Whether we are call by value */ private boolean callByValue; + private AuthorizationManagerServiceMBean authorizationManagerService; + public EjbModule(final DeploymentInfo di, TransactionManager tm, ObjectName webServiceName) { @@ -305,6 +312,10 @@ ServiceControllerMBean.OBJECT_NAME, server); + authorizationManagerService = (AuthorizationManagerServiceMBean) + MBeanProxyExt.create(AuthorizationManagerServiceMBean.class, + AuthorizationManagerServiceMBean.OBJECT_NAME, + server); log.debug("createService, begin"); //Ask the ejb deployer whether we are call by value @@ -382,6 +393,19 @@ Registry.bind(new Integer(jmxHash), jmxName); log.debug("Bound jmxName=" + jmxName + ", hash=" + jmxHash + "into Registry"); } + + //Register any available XACML Policies + String securityDomain = Util.unprefixSecurityDomain(appMetaData.getSecurityDomain()); + URL xacmlURL = deploymentInfo.localCl.findResource("META-INF/jboss-xacml-policy.xml"); + if(xacmlURL != null) + { + AuthorizationManager authzmgr = authorizationManagerService.getAuthorizationManager(securityDomain); + if(authzmgr instanceof PolicyRegistration) + { + PolicyRegistration xam = (PolicyRegistration)authzmgr; + xam.registerPolicy(contextID,xacmlURL); + } + } } catch (Exception e) { @@ -455,13 +479,22 @@ (WebServiceMBean) MBeanProxyExt.create(WebServiceMBean.class, webServiceName); } - + ApplicationMetaData metaData = (ApplicationMetaData) deploymentInfo.metaData; ListIterator iter = containerOrdering.listIterator(containerOrdering.size()); // Unegister the permissions with the JACC layer String contextID = deploymentInfo.shortName; PolicyConfigurationFactory pcFactory = PolicyConfigurationFactory.getPolicyConfigurationFactory(); PolicyConfiguration pc = pcFactory.getPolicyConfiguration(contextID, true); pc.delete(); + //Unregister any xacml policies + String securityDomain = Util.unprefixSecurityDomain(metaData.getSecurityDomain()); + AuthorizationManager authzmgr = authorizationManagerService.getAuthorizationManager(securityDomain); + if(authzmgr instanceof PolicyRegistration) + { + PolicyRegistration xam = (PolicyRegistration)authzmgr; + xam.deRegisterPolicy(contextID); + } + while ( iter.hasPrevious() ) { Container con = (Container) iter.previous(); @@ -1230,7 +1263,6 @@ return ic; } - } /* vim:ts=3:sw=3:et |
From: Anil S. <ani...@jb...> - 2006-07-07 16:33:39
|
User: asaldhana Date: 06/07/07 12:33:35 Added: src/main/org/jboss/ejb/plugins SecurityAuthorizationInterceptor.java Log: JBAS-3374: Authorization Interceptor that integrates with the Authorization Framework Revision Changes Path 1.1 date: 2006/07/07 16:33:35; author: asaldhana; state: Exp;jboss/src/main/org/jboss/ejb/plugins/SecurityAuthorizationInterceptor.java Index: SecurityAuthorizationInterceptor.java =================================================================== /* * 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.ejb.plugins; import java.lang.reflect.Method; import java.util.HashMap; import javax.security.auth.Subject; import org.jboss.ejb.Container; import org.jboss.invocation.Invocation; import org.jboss.metadata.BeanMetaData; import org.jboss.mx.util.MBeanProxyExt; import org.jboss.mx.util.MBeanServerLocator; import org.jboss.security.AuthorizationManager; import org.jboss.security.authorization.AuthorizationContext; import org.jboss.security.authorization.EJBResource; import org.jboss.security.plugins.AuthorizationManagerServiceMBean; //$Id: SecurityAuthorizationInterceptor.java,v 1.1 2006/07/07 16:33:35 asaldhana Exp $ /** * Authorization Interceptor that makes use of the Authorization * Framework for access control decisions * @author <a href="mailto:Ani...@jb...">Anil Saldhana</a> * @since Jul 6, 2006 * @version $Revision: 1.1 $ */ public class SecurityAuthorizationInterceptor extends AbstractInterceptor { protected String ejbName = null; protected String securityDomain = null; protected AuthorizationManagerServiceMBean authorizationManagerService = null; public SecurityAuthorizationInterceptor() { authorizationManagerService = (AuthorizationManagerServiceMBean) MBeanProxyExt.create(AuthorizationManagerServiceMBean.class, AuthorizationManagerServiceMBean.OBJECT_NAME, MBeanServerLocator.locateJBoss()); } /** * @see AbstractInterceptor#setContainer(Container) */ public void setContainer(Container container) { super.setContainer(container); if (container != null) { BeanMetaData beanMetaData = container.getBeanMetaData(); ejbName = beanMetaData.getEjbName(); securityDomain = container.getSecurityManager().getSecurityDomain(); } } /** * @see AbstractInterceptor#invokeHome(Invocation) */ public Object invokeHome(Invocation mi) throws Exception { // Authorize the call checkAuthorization(mi); Object returnValue = getNext().invokeHome(mi); return returnValue; } /** * @see AbstractInterceptor#invoke(Invocation) */ public Object invoke(Invocation mi) throws Exception { // Authorize the call checkAuthorization(mi); Object returnValue = getNext().invoke(mi); return returnValue; } /** Authorize the caller's access to the method invocation */ private void checkAuthorization(Invocation mi) throws Exception { Method m = mi.getMethod(); // Ignore internal container calls if( m == null ) return; // Get the caller Subject caller = SecurityActions.getContextSubject(); AuthorizationManager authzManager = this.getAuthorizationManager(); final HashMap map = new HashMap(); map.put("ejb.name",this.ejbName); map.put("ejb.method",mi.getMethod()); map.put("ejb.principal", mi.getPrincipal()); map.put("authorizationManager",authzManager); EJBResource ejbResource = new EJBResource(map); boolean isAuthorized = false; try { int check = authzManager.authorize(ejbResource); isAuthorized = (check == AuthorizationContext.PERMIT); } catch (Exception e) { isAuthorized = false; log.error("Error in authorization:",e); } String msg = "Denied: caller=" + caller; if(!isAuthorized) throw new SecurityException(msg); } /** * Get the Authorization Manager for the security domain * @return authorization manager * @throws Exception */ private AuthorizationManager getAuthorizationManager() throws Exception { return authorizationManagerService.getAuthorizationManager(securityDomain); } } |
From: Anil S. <ani...@jb...> - 2006-07-07 16:30:46
|
User: asaldhana Date: 06/07/07 12:30:45 Modified: src/main/org/jboss/security/plugins AuthorizationManagerServiceMBean.java Log: Add a default object name Revision Changes Path 1.3 +6 -2 jbosssx/src/main/org/jboss/security/plugins/AuthorizationManagerServiceMBean.java (In the diff below, changes in quantity of whitespace are not shown.) Index: AuthorizationManagerServiceMBean.java =================================================================== RCS file: /cvsroot/jboss/jbosssx/src/main/org/jboss/security/plugins/AuthorizationManagerServiceMBean.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- AuthorizationManagerServiceMBean.java 28 Jun 2006 02:20:58 -0000 1.2 +++ AuthorizationManagerServiceMBean.java 7 Jul 2006 16:30:45 -0000 1.3 @@ -23,20 +23,24 @@ import javax.management.ObjectName; +import org.jboss.mx.util.ObjectNameFactory; import org.jboss.security.AuthorizationManager; import org.jboss.system.ServiceMBean; -//$Id: AuthorizationManagerServiceMBean.java,v 1.2 2006/06/28 02:20:58 asaldhana Exp $ +//$Id: AuthorizationManagerServiceMBean.java,v 1.3 2006/07/07 16:30:45 asaldhana Exp $ /** * Management interface for the AuthorizationManagerService MBean * @author <a href="mailto:Ani...@jb...">Anil Saldhana</a> * @since Jan 2, 2006 - * @version $Revision: 1.2 $ + * @version $Revision: 1.3 $ */ public interface AuthorizationManagerServiceMBean extends ServiceMBean, AuthorizationManager { + /** The default ObjectName */ + ObjectName OBJECT_NAME = ObjectNameFactory.create("jboss.security:service=AuthorizationManager"); + /** * Set the name of the class that provides the authorization manager implementation. * |
From: Anil S. <ani...@jb...> - 2006-07-07 16:30:13
|
User: asaldhana Date: 06/07/07 12:30:07 Modified: src/main/org/jboss/security/authorization/modules XACMLAuthorizationModule.java Log: JBAS-3374: Add a default delegate for the ejb layer Revision Changes Path 1.4 +4 -2 jbosssx/src/main/org/jboss/security/authorization/modules/XACMLAuthorizationModule.java (In the diff below, changes in quantity of whitespace are not shown.) Index: XACMLAuthorizationModule.java =================================================================== RCS file: /cvsroot/jboss/jbosssx/src/main/org/jboss/security/authorization/modules/XACMLAuthorizationModule.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- XACMLAuthorizationModule.java 28 Jun 2006 02:20:58 -0000 1.3 +++ XACMLAuthorizationModule.java 7 Jul 2006 16:30:07 -0000 1.4 @@ -34,13 +34,13 @@ import org.jboss.security.authorization.AuthorizationModule; import org.jboss.security.authorization.Resource; -//$Id: XACMLAuthorizationModule.java,v 1.3 2006/06/28 02:20:58 asaldhana Exp $ +//$Id: XACMLAuthorizationModule.java,v 1.4 2006/07/07 16:30:07 asaldhana Exp $ /** * Authorization Module that utilizes XACML * @author <a href="mailto:Ani...@jb...">Anil Saldhana</a> * @since Jun 11, 2006 - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ */ public class XACMLAuthorizationModule extends AbstractAuthorizationModule { @@ -53,6 +53,8 @@ { delegateMap.put(Resource.WEB, "org.jboss.web.tomcat.security.authorization.WebXACMLPolicyModuleHelper"); + delegateMap.put(Resource.EJB, + "org.jboss.security.authorization.modules.ejb.EJBXACMLPolicyModuleHelper"); } /** |
From: Anil S. <ani...@jb...> - 2006-07-07 16:28:46
|
User: asaldhana Date: 06/07/07 12:28:44 Modified: src/main/org/jboss/security Util.java Log: Add a method to remove the prefix from security domain Revision Changes Path 1.13 +18 -1 jbosssx/src/main/org/jboss/security/Util.java (In the diff below, changes in quantity of whitespace are not shown.) Index: Util.java =================================================================== RCS file: /cvsroot/jboss/jbosssx/src/main/org/jboss/security/Util.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -b -r1.12 -r1.13 --- Util.java 30 Oct 2005 00:06:02 -0000 1.12 +++ Util.java 7 Jul 2006 16:28:44 -0000 1.13 @@ -46,7 +46,7 @@ Jhong for the SRP Distribution (http://srp.stanford.edu/srp/). @author Sco...@jb... - @version $Revision: 1.12 $ + @version $Revision: 1.13 $ */ public class Util { @@ -593,4 +593,21 @@ } return data; } + + /** + * Strip the security domain of prefix (java:jaas or java:jbsx) + * @param securityDomain + * @return + */ + public static String unprefixSecurityDomain(String securityDomain) + { + String result = ""; + if(securityDomain.startsWith("java:/jaas")) + result = securityDomain.substring("java:/jaas/".length()); + else + if(securityDomain.startsWith("java:/jbsx")) + result = securityDomain.substring("java:/jbsx/".length()); + return result; + + } } |
From: Tom E. <tom...@jb...> - 2006-07-07 16:13:43
|
User: telrod Date: 06/07/07 12:13:40 Modified: src/main/org/jboss/jrunit/harness TestDriver.java Log: JBBENCH-176 - fix for IllegalMonitorStateException Revision Changes Path 1.17 +7 -2 jrunit/src/main/org/jboss/jrunit/harness/TestDriver.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TestDriver.java =================================================================== RCS file: /cvsroot/jboss/jrunit/src/main/org/jboss/jrunit/harness/TestDriver.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -b -r1.16 -r1.17 --- TestDriver.java 6 Dec 2005 03:56:53 -0000 1.16 +++ TestDriver.java 7 Jul 2006 16:13:40 -0000 1.17 @@ -500,12 +500,17 @@ // wait for other processes to shutdown log.debug("Waiting for all other processes to shutdown and leave group."); log.debug("Current number of members: " + currentNumberOfMembers); + Thread t=Thread.currentThread(); for(int x = 0; x < 5 && currentNumberOfMembers != 0; x++) { try { sendAbortMessage(); - Thread.currentThread().wait(4000); + //Thread.currentThread().wait(4000); + synchronized(t) + { + t.wait(4000); + } log.debug("Current number of members: " + currentNumberOfMembers); } catch(InterruptedException e) @@ -615,7 +620,7 @@ { public void run() { - String execCmd = "java" + + String execCmd = "java -Djava.net.preferIPv4Stack=true " + getSystemProperties(sysProperties) + "-cp \"" + getExtendedClassPath(extendedClasspath) + System.getProperty("java.class.path") + "\" " + ServerTestHarness.class.getName() + |
From: Anil S. <ani...@jb...> - 2006-07-07 16:02:33
|
User: asaldhana Date: 06/07/07 12:02:28 Log: Directory /cvsroot/jboss/jbosssx/src/main/org/jboss/security/authorization/modules/ejb added to the repository |
From: Roy R. <ru...@jb...> - 2006-07-07 15:55:34
|
User: russo Date: 06/07/07 11:55:33 Modified: core/src/resources/portal-core-war/WEB-INF/jsp/login login.jsp Log: JBPORTAL-939 - reset cms window name. Revision Changes Path 1.2 +1 -1 jboss-portal/core/src/resources/portal-core-war/WEB-INF/jsp/login/login.jsp (In the diff below, changes in quantity of whitespace are not shown.) Index: login.jsp =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/resources/portal-core-war/WEB-INF/jsp/login/login.jsp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- login.jsp 17 Nov 2005 15:39:57 -0000 1.1 +++ login.jsp 7 Jul 2006 15:55:33 -0000 1.2 @@ -1,6 +1,6 @@ <div id="login-container"> <fieldset><legend>JBoss Portal Login</legend> - <form method="POST" action="j_security_check" name="loginform" id="loginForm"> + <form method="POST" action="<%= response.encodeURL("j_security_check") %>" name="loginform" id="loginForm"> <label for="username">Username:</label><input type="text" name="j_username" id="username" value=""/><br> <label for="password">Password:</label><input type="password" name="j_password" id="password" value=""/><br> <input type="submit" id="loginButton" name="login" value="Login"/> |
From: Roy R. <ru...@jb...> - 2006-07-07 15:55:34
|
User: russo Date: 06/07/07 11:55:33 Modified: core/src/resources/portal-core-sar/conf/data default-object.xml Log: JBPORTAL-939 - reset cms window name. Revision Changes Path 1.24 +1 -1 jboss-portal/core/src/resources/portal-core-sar/conf/data/default-object.xml (In the diff below, changes in quantity of whitespace are not shown.) Index: default-object.xml =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/resources/portal-core-sar/conf/data/default-object.xml,v retrieving revision 1.23 retrieving revision 1.24 diff -u -b -r1.23 -r1.24 --- default-object.xml 24 Jun 2006 04:22:30 -0000 1.23 +++ default-object.xml 7 Jul 2006 15:55:32 -0000 1.24 @@ -85,7 +85,7 @@ <height>0</height> </window> <window> - <window-name>CMSPortletWindow</window-name> + <window-name>DefaultCMSPortletWindow</window-name> <instance-ref>CMSPortletInstance</instance-ref> <region>center</region> <height>0</height> |
From: Roy R. <ru...@jb...> - 2006-07-07 15:55:34
|
User: russo Date: 06/07/07 11:55:32 Modified: core/src/resources/portal-cms-sar/META-INF jboss-service.xml Log: JBPORTAL-939 - reset cms window name. Revision Changes Path 1.36 +1 -1 jboss-portal/core/src/resources/portal-cms-sar/META-INF/jboss-service.xml (In the diff below, changes in quantity of whitespace are not shown.) Index: jboss-service.xml =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/resources/portal-cms-sar/META-INF/jboss-service.xml,v retrieving revision 1.35 retrieving revision 1.36 diff -u -b -r1.35 -r1.36 --- jboss-service.xml 5 Jul 2006 17:18:22 -0000 1.35 +++ jboss-service.xml 7 Jul 2006 15:55:31 -0000 1.36 @@ -256,7 +256,7 @@ xmbean-code="org.jboss.portal.common.system.JBossServiceModelMBean"> <xmbean/> <attribute name="Prefix">content</attribute> - <attribute name="TargetWindowRef">default.default.CMSPortletWindow</attribute> + <attribute name="TargetWindowRef">default.default.DefaultCMSPortletWindow</attribute> <depends optional-attribute-name="Factory" proxy-type="attribute">portal:commandFactory=Delegating</depends> <depends optional-attribute-name="CMSService" proxy-type="attribute">portal:service=CMS</depends> </mbean> |
From: Julien V. <ju...@jb...> - 2006-07-07 15:32:23
|
User: julien Date: 06/07/07 11:32:20 Modified: core/src/main/org/jboss/portal/core/aspects/server UserInterceptor.java Log: modifying user interceptor to only trace the user not found when not found Revision Changes Path 1.28 +17 -5 jboss-portal/core/src/main/org/jboss/portal/core/aspects/server/UserInterceptor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: UserInterceptor.java =================================================================== RCS file: /cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portal/core/aspects/server/UserInterceptor.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -b -r1.27 -r1.28 --- UserInterceptor.java 18 Jun 2006 23:23:12 -0000 1.27 +++ UserInterceptor.java 7 Jul 2006 15:32:20 -0000 1.28 @@ -27,6 +27,7 @@ import org.jboss.portal.common.invocation.InvocationException; import org.jboss.portal.identity.UserModule; import org.jboss.portal.identity.User; +import org.jboss.portal.identity.NoSuchUserException; import org.jboss.logging.Logger; import javax.naming.InitialContext; @@ -36,6 +37,7 @@ import javax.servlet.http.HttpSessionBindingEvent; import java.util.Date; import java.io.Serializable; +import java.security.Principal; /** * The interceptor is responsible for managing the user identity lifecycle based @@ -45,7 +47,7 @@ * current value when the user is not used anymore. * * @author <a href="mailto:ju...@jb...">Julien Viet</a> - * @version $Revision: 1.27 $ + * @version $Revision: 1.28 $ */ public class UserInterceptor extends ServerInterceptor { @@ -73,14 +75,17 @@ HttpSession httpSession = req.getSession(); // Get the id - String userName = req.getRemoteUser(); + Principal userPrincipal = req.getUserPrincipal(); // The user for the request User user = null; // Fetch user if we can - if (userName != null) + if (userPrincipal != null) { + String userName = userPrincipal.getName(); + + // try { if (trace) @@ -97,9 +102,16 @@ log.trace("Found user=" + userName); } } + catch (NoSuchUserException e) + { + if (trace) + { + log.trace("User not found " + userName + " for principal " + userName + ", will use no user instead"); + } + } catch (Exception e) { - log.error("Cannot fetch user=" + userName, e); + log.error("Cannot retrieve user=" + userName, e); throw new InvocationException("Cannot fetch user=" + userName, e); } } @@ -128,7 +140,7 @@ { if (trace) { - log.trace("Adding finalizer for user=" + userName); + log.trace("Adding finalizer for user=" + user.getUserName()); } // Set the user finalizer |
From: Julien V. <ju...@jb...> - 2006-07-07 15:32:23
|
User: julien Date: 06/07/07 11:32:20 Modified: build/ide/intellij/idea50/modules/core core.iml Log: modifying user interceptor to only trace the user not found when not found Revision Changes Path 1.30 +9 -0 jboss-portal/build/ide/intellij/idea50/modules/core/core.iml (In the diff below, changes in quantity of whitespace are not shown.) Index: core.iml =================================================================== RCS file: /cvsroot/jboss/jboss-portal/build/ide/intellij/idea50/modules/core/core.iml,v retrieving revision 1.29 retrieving revision 1.30 diff -u -b -r1.29 -r1.30 --- core.iml 30 Jun 2006 23:50:58 -0000 1.29 +++ core.iml 7 Jul 2006 15:32:20 -0000 1.30 @@ -291,6 +291,15 @@ <SOURCES /> </library> </orderEntry> + <orderEntry type="module-library"> + <library> + <CLASSES> + <root url="jar://$MODULE_DIR$/../../../../../../thirdparty/jbossas/core-libs/lib/jboss-common.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> + </orderEntry> <orderEntryProperties /> </component> <component name="VcsManagerConfiguration"> |
From: Anil S. <ani...@jb...> - 2006-07-07 15:21:40
|
User: asaldhana Date: 06/07/07 11:21:35 Modified: imports/sections web.xml Log: Minor update Revision Changes Path 1.13 +2 -2 jbosstest/imports/sections/web.xml (In the diff below, changes in quantity of whitespace are not shown.) Index: web.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/imports/sections/web.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -b -r1.12 -r1.13 --- web.xml 28 Jun 2006 02:30:29 -0000 1.12 +++ web.xml 7 Jul 2006 15:21:35 -0000 1.13 @@ -483,7 +483,7 @@ <war warfile="${build.lib}/xacml-requestattrib.war" webxml="${build.resources}/web/xacml/requestAttrib/WEB-INF/web.xml"> <webinf dir="${build.resources}/web/xacml/requestAttrib/WEB-INF/"> - <include name="xacml-policy.xml"/> + <include name="*policy.xml"/> <include name="jboss-web.xml"/> </webinf> <fileset dir="${build.resources}/web"> @@ -501,7 +501,7 @@ <include name="jboss-web.xml"/> </webinf> <webinf dir="${build.resources}/web/xacml/subjectRole/WEB-INF/"> - <include name="xacml-policy.xml"/> + <include name="*policy.xml"/> </webinf> <fileset dir="${build.resources}/web"> <include name="users.properties"/> |
From: Max R. A. <man...@jb...> - 2006-07-07 14:57:16
|
User: mandersen Date: 06/07/07 10:38:36 Modified: hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui Activator.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/Activator.java (In the diff below, changes in quantity of whitespace are not shown.) Index: Activator.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/Activator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- Activator.java 2 Jun 2006 20:06:03 -0000 1.1 +++ Activator.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui; import org.eclipse.ui.plugin.AbstractUIPlugin; |
From: Manik S. <msu...@jb...> - 2006-07-07 14:57:15
|
User: msurtani Date: 06/07/07 10:41:46 Modified: src/org/jboss/cache/interceptors Tag: Branch_JBossCache_1_4_0 TxInterceptor.java Log: Better fix for JBCACHE-668 and JBCACHE-682 Revision Changes Path No revision No revision 1.48.2.4 +24 -22 JBossCache/src/org/jboss/cache/interceptors/TxInterceptor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TxInterceptor.java =================================================================== RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/TxInterceptor.java,v retrieving revision 1.48.2.3 retrieving revision 1.48.2.4 diff -u -b -r1.48.2.3 -r1.48.2.4 --- TxInterceptor.java 7 Jul 2006 11:10:12 -0000 1.48.2.3 +++ TxInterceptor.java 7 Jul 2006 14:41:46 -0000 1.48.2.4 @@ -15,6 +15,7 @@ import org.jboss.cache.TransactionEntry; import org.jboss.cache.TransactionTable; import org.jboss.cache.TreeCache; +import org.jboss.cache.lock.IdentityLock; import org.jboss.cache.config.Option; import org.jboss.cache.marshall.JBCMethodCall; import org.jboss.cache.marshall.MethodCallFactory; @@ -31,6 +32,7 @@ import java.util.Iterator; import java.util.List; import java.util.Map; +import java.util.LinkedList; /** * This interceptor is the new default at the head of all interceptor chains, @@ -720,17 +722,17 @@ private void cleanupStaleLocks(GlobalTransaction gtx) throws Throwable { - // try running a 'local' commit only, to clear locks. - MethodCall commitMethod = MethodCallFactory.create(MethodDeclarations.commitMethod, new Object[]{gtx}); - // make sure this call does not replicate. - InvocationContext ic = getInvocationContext(); - Option o = ic.getOptionOverrides(); - o.setCacheModeLocal(true); - ic.setOptionOverrides(o); - setInvocationContext(ic); - handleCommitRollback(commitMethod); + TransactionEntry entry = txTable.get(gtx); + List list=new LinkedList(entry.getLocks()); + boolean trace = log.isTraceEnabled(); + for(int i=list.size() - 1; i >= 0; i--) + { + IdentityLock lock=(IdentityLock)list.get(i); + if(trace) log.trace("releasing lock for " + lock.getFqn() + " (" + lock + ")"); + lock.release(gtx); + } + entry.getLocks().clear(); } - /** * creates a rollback() MethodCall and feeds it to handleCommitRollback(); |
From: Max R. A. <man...@jb...> - 2006-07-07 14:57:14
|
User: mandersen Date: 06/07/07 10:38:36 Modified: hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal BasicQuickAssistProcessor.java DebugJavaCompletionProposalComputer.java CriteriaQuickAssistProcessor.java HQLJavaCompletionProposalComputer.java HQLQuickAssistProcessor.java ExternalActionQuickAssistProposal.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/BasicQuickAssistProcessor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: BasicQuickAssistProcessor.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/BasicQuickAssistProcessor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- BasicQuickAssistProcessor.java 2 Jun 2006 20:06:03 -0000 1.1 +++ BasicQuickAssistProcessor.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui.internal; import org.eclipse.core.runtime.CoreException; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/DebugJavaCompletionProposalComputer.java (In the diff below, changes in quantity of whitespace are not shown.) Index: DebugJavaCompletionProposalComputer.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/DebugJavaCompletionProposalComputer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- DebugJavaCompletionProposalComputer.java 2 Jun 2006 21:16:36 -0000 1.1 +++ DebugJavaCompletionProposalComputer.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui.internal; import java.util.ArrayList; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/CriteriaQuickAssistProcessor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: CriteriaQuickAssistProcessor.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/CriteriaQuickAssistProcessor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- CriteriaQuickAssistProcessor.java 2 Jun 2006 20:06:03 -0000 1.1 +++ CriteriaQuickAssistProcessor.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui.internal; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/HQLJavaCompletionProposalComputer.java (In the diff below, changes in quantity of whitespace are not shown.) Index: HQLJavaCompletionProposalComputer.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/HQLJavaCompletionProposalComputer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- HQLJavaCompletionProposalComputer.java 2 Jun 2006 20:06:03 -0000 1.1 +++ HQLJavaCompletionProposalComputer.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui.internal; import java.util.ArrayList; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/HQLQuickAssistProcessor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: HQLQuickAssistProcessor.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/HQLQuickAssistProcessor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- HQLQuickAssistProcessor.java 2 Jun 2006 20:06:03 -0000 1.1 +++ HQLQuickAssistProcessor.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui.internal; import org.eclipse.core.runtime.CoreException; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/ExternalActionQuickAssistProposal.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ExternalActionQuickAssistProposal.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/src/org/hibernate/eclipse/jdt/ui/internal/ExternalActionQuickAssistProposal.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- ExternalActionQuickAssistProposal.java 2 Jun 2006 20:06:03 -0000 1.1 +++ ExternalActionQuickAssistProposal.java 7 Jul 2006 14:38:36 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.jdt.ui.internal; import org.eclipse.jdt.ui.text.java.IInvocationContext; |
From: Tom B. <tom...@jb...> - 2006-07-07 14:52:59
|
User: tbaeyens Date: 06/07/07 10:52:50 Added: eclipse/sdk/3.2 eclipse-SDK-3.2-linux-gtk.tar.gz eclipse-SDK-3.2-win32.zip Log: adding eclipse 3.2 to the repository Revision Changes Path 1.1 date: 2006/07/07 14:52:38; author: tbaeyens; state: Exp;repository.jboss.com/eclipse/sdk/3.2/eclipse-SDK-3.2-linux-gtk.tar.gz <<Binary file>> 1.1 date: 2006/07/07 14:52:42; author: tbaeyens; state: Exp;repository.jboss.com/eclipse/sdk/3.2/eclipse-SDK-3.2-win32.zip <<Binary file>> |
From: Manik S. <msu...@jb...> - 2006-07-07 14:33:47
|
User: msurtani Date: 06/07/07 10:33:44 Modified: src/org/jboss/cache/interceptors Tag: Branch_JBossCache_1_3_0 TxInterceptor.java Log: Hard cleanup of locks for JBCACHE-668 and JBCACHE-682 Revision Changes Path No revision No revision 1.35.2.6 +24 -8 JBossCache/src/org/jboss/cache/interceptors/TxInterceptor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TxInterceptor.java =================================================================== RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/interceptors/TxInterceptor.java,v retrieving revision 1.35.2.5 retrieving revision 1.35.2.6 diff -u -b -r1.35.2.5 -r1.35.2.6 --- TxInterceptor.java 7 Jul 2006 11:11:35 -0000 1.35.2.5 +++ TxInterceptor.java 7 Jul 2006 14:33:44 -0000 1.35.2.6 @@ -8,6 +8,7 @@ import EDU.oswego.cs.dl.util.concurrent.ConcurrentHashMap; import org.jboss.cache.*; +import org.jboss.cache.lock.IdentityLock; import org.jboss.cache.config.Option; import org.jgroups.Address; import org.jgroups.blocks.MethodCall; @@ -18,6 +19,7 @@ import java.util.Iterator; import java.util.List; import java.util.Map; +import java.util.LinkedList; /** * This interceptor is the new default at the head of all interceptor chains, @@ -704,15 +706,29 @@ private void cleanupStaleLocks(GlobalTransaction gtx) throws Throwable { + // try running a 'local' commit only, to clear locks. - MethodCall commitMethod = new MethodCall(TreeCache.commitMethod, new Object[]{gtx}); - // make sure this call does not replicate. - InvocationContext ic = getInvocationContext(); - Option o = ic.getOptionOverrides(); - o.setCacheModeLocal(true); - ic.setOptionOverrides(o); - setInvocationContext(ic); - handleCommitRollback(commitMethod); +// MethodCall commitMethod = new MethodCall(TreeCache.commitMethod, new Object[]{gtx}); +// // make sure this call does not replicate. +// InvocationContext ic = getInvocationContext(); +// Option o = ic.getOptionOverrides(); +// o.setCacheModeLocal(true); +// ic.setOptionOverrides(o); +// setInvocationContext(ic); +// handleCommitRollback(commitMethod); + + // perform a 'hard cleanup' of locks + // Let's do it in stack style, LIFO + TransactionEntry entry = txTable.get(gtx); + List list=new LinkedList(entry.getLocks()); + boolean trace = log.isTraceEnabled(); + for(int i=list.size() - 1; i >= 0; i--) + { + IdentityLock lock=(IdentityLock)list.get(i); + if(trace) log.trace("releasing lock for " + lock.getFqn() + " (" + lock + ")"); + lock.release(gtx); + } + entry.getLocks().clear(); } /** |
From: Kabir K. <kk...@jb...> - 2006-07-07 14:32:53
|
User: kkhan Date: 06/07/07 10:14:26 Modified: src/main/org/jboss/aop/advice GeneratedAdvisorInterceptor.java Log: [JBAOP-272] If user tries to dynamically invoke upon a method and that has Before/After/Throwing advices we can not generate an interceptor for that. Create a "null" interceptor and log a warning. Revision Changes Path 1.2 +44 -2 jboss-aop/src/main/org/jboss/aop/advice/GeneratedAdvisorInterceptor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: GeneratedAdvisorInterceptor.java =================================================================== RCS file: /cvsroot/jboss/jboss-aop/src/main/org/jboss/aop/advice/GeneratedAdvisorInterceptor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- GeneratedAdvisorInterceptor.java 7 Jul 2006 13:50:39 -0000 1.1 +++ GeneratedAdvisorInterceptor.java 7 Jul 2006 14:14:26 -0000 1.2 @@ -60,7 +60,7 @@ * Old skool class advisors do not use this class * * @author <a href="kab...@jb...">Kabir Khan</a> - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ */ public class GeneratedAdvisorInterceptor implements Interceptor { @@ -424,10 +424,17 @@ { if (lazyInterceptor == null) { + if (factory instanceof GeneratedOnly) + { + lazyInterceptor = new GeneratedOnlyInterceptor(factory.getName(), (GeneratedOnly)factory); + } + else + { lazyInterceptor = create(invocation.getAdvisor(), getJoinpoint(invocation)); } } } + } return lazyInterceptor.invoke(invocation); } @@ -469,4 +476,39 @@ throw new RuntimeException("Invocation type not handled " + invocation); } + private class GeneratedOnlyInterceptor implements Interceptor + { + String name; + String type; + + GeneratedOnlyInterceptor(String name, GeneratedOnly factory) + { + this.name = name; + + if (factory instanceof BeforeFactory) + { + type = "before"; + } + else if (factory instanceof AfterFactory) + { + type = "after"; + } + else if (factory instanceof ThrowingFactory) + { + type = "throwing"; + } + System.out.println("[warn] " + type + " interceptor:s'" + name + "' is ignored for dynamic invocation. Adding null GeneratedOnlyInterceptor in its place"); + } + + public String getName() + { + return name; + } + + public Object invoke(Invocation invocation) throws Throwable + { + return invocation.invokeNext(); + } + + } } |
From: Kabir K. <kk...@jb...> - 2006-07-07 14:23:10
|
User: kkhan Date: 06/07/07 10:22:57 Modified: src/main/org/jboss/aop/instrument JoinPointGenerator.java Log: Superfluous code. TransformerCommon now outputs the class if -Djboss.aop.debug.classes is true Revision Changes Path 1.30 +0 -7 jboss-aop/src/main/org/jboss/aop/instrument/JoinPointGenerator.java (In the diff below, changes in quantity of whitespace are not shown.) Index: JoinPointGenerator.java =================================================================== RCS file: /cvsroot/jboss/jboss-aop/src/main/org/jboss/aop/instrument/JoinPointGenerator.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -b -r1.29 -r1.30 --- JoinPointGenerator.java 7 Jul 2006 13:50:39 -0000 1.29 +++ JoinPointGenerator.java 7 Jul 2006 14:22:57 -0000 1.30 @@ -193,13 +193,6 @@ private Class toClass(ClassPool pool, CtClass ctclass) throws NotFoundException, CannotCompileException, ClassNotFoundException { - if (AspectManager.debugClasses) - { - //Debug code, outputting classes - CtClass advisedClass = pool.get(advisor.getClazz().getName()); - TransformerCommon.compileOrLoadClass(advisedClass, ctclass, true); - return Thread.currentThread().getContextClassLoader().loadClass(ctclass.getName()); - } return TransformerCommon.toClass(ctclass); } |
From: Max R. A. <man...@jb...> - 2006-07-07 13:51:28
|
User: mandersen Date: 06/07/07 09:51:13 Modified: hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/facet HibernateCoreFacetInstallDelegate.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/facet/HibernateCoreFacetInstallDelegate.java (In the diff below, changes in quantity of whitespace are not shown.) Index: HibernateCoreFacetInstallDelegate.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/facet/HibernateCoreFacetInstallDelegate.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- HibernateCoreFacetInstallDelegate.java 1 Jun 2006 22:42:48 -0000 1.1 +++ HibernateCoreFacetInstallDelegate.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.facet; import org.eclipse.core.resources.IProject; |
From: Max R. A. <man...@jb...> - 2006-07-07 13:51:27
|
User: mandersen Date: 06/07/07 09:51:12 Modified: hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/nature HibernateNature.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.8 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/nature/HibernateNature.java (In the diff below, changes in quantity of whitespace are not shown.) Index: HibernateNature.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/nature/HibernateNature.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- HibernateNature.java 1 Jun 2006 22:42:49 -0000 1.7 +++ HibernateNature.java 7 Jul 2006 13:51:12 -0000 1.8 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.nature; import java.util.ArrayList; |
From: Max R. A. <man...@jb...> - 2006-07-07 13:51:20
|
User: mandersen Date: 06/07/07 09:51:10 Modified: hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards ConsoleConfigurationCreationWizard.java CollectingSearchRequestor.java TreeToTableComposite.java NewConfigurationWizard.java TableFilterWizardPage.java TableFilterCellModifier.java TypeMappingContentProvider.java NewHibernateMappingFileWizard.java NewReverseEngineeringFileWizard.java ConsoleConfigurationWizardPage.java NewConfigurationWizardPage.java TableFilterContentProvider.java NewHibernateMappingFilePage.java TypeMappingLabelProvider.java TableFilterView.java UpDownListComposite.java TypeMappingCellModifier.java TableFilterLabelProvider.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.8 +19 -1 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/ConsoleConfigurationCreationWizard.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ConsoleConfigurationCreationWizard.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/ConsoleConfigurationCreationWizard.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- ConsoleConfigurationCreationWizard.java 26 Sep 2005 19:33:12 -0000 1.7 +++ ConsoleConfigurationCreationWizard.java 7 Jul 2006 13:51:10 -0000 1.8 @@ -1,5 +1,23 @@ /* - * Created on 2004-10-13 + * 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.hibernate.eclipse.console.wizards; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/CollectingSearchRequestor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: CollectingSearchRequestor.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/CollectingSearchRequestor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- CollectingSearchRequestor.java 9 Dec 2004 13:45:37 -0000 1.1 +++ CollectingSearchRequestor.java 7 Jul 2006 13:51:10 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import java.util.ArrayList; 1.5 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TreeToTableComposite.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TreeToTableComposite.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TreeToTableComposite.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- TreeToTableComposite.java 27 Jan 2006 00:52:31 -0000 1.4 +++ TreeToTableComposite.java 7 Jul 2006 13:51:10 -0000 1.5 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import org.eclipse.jface.viewers.CellEditor; 1.12 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewConfigurationWizard.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NewConfigurationWizard.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewConfigurationWizard.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -b -r1.11 -r1.12 --- NewConfigurationWizard.java 23 Aug 2005 10:07:50 -0000 1.11 +++ NewConfigurationWizard.java 7 Jul 2006 13:51:10 -0000 1.12 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import java.io.ByteArrayInputStream; 1.7 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterWizardPage.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TableFilterWizardPage.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterWizardPage.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- TableFilterWizardPage.java 7 Feb 2006 16:17:49 -0000 1.6 +++ TableFilterWizardPage.java 7 Jul 2006 13:51:10 -0000 1.7 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import org.eclipse.jdt.internal.ui.wizards.dialogfields.ComboDialogField; 1.2 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterCellModifier.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TableFilterCellModifier.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterCellModifier.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- TableFilterCellModifier.java 2 Sep 2005 08:02:52 -0000 1.1 +++ TableFilterCellModifier.java 7 Jul 2006 13:51:10 -0000 1.2 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; 1.2 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TypeMappingContentProvider.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TypeMappingContentProvider.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TypeMappingContentProvider.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- TypeMappingContentProvider.java 9 Sep 2005 23:09:22 -0000 1.1 +++ TypeMappingContentProvider.java 7 Jul 2006 13:51:10 -0000 1.2 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewHibernateMappingFileWizard.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NewHibernateMappingFileWizard.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewHibernateMappingFileWizard.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- NewHibernateMappingFileWizard.java 15 Feb 2006 17:07:27 -0000 1.1 +++ NewHibernateMappingFileWizard.java 7 Jul 2006 13:51:10 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import java.io.ByteArrayInputStream; 1.8 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewReverseEngineeringFileWizard.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NewReverseEngineeringFileWizard.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewReverseEngineeringFileWizard.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- NewReverseEngineeringFileWizard.java 29 Nov 2005 17:23:04 -0000 1.7 +++ NewReverseEngineeringFileWizard.java 7 Jul 2006 13:51:10 -0000 1.8 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import java.io.ByteArrayInputStream; 1.21 +18 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/ConsoleConfigurationWizardPage.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ConsoleConfigurationWizardPage.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/ConsoleConfigurationWizardPage.java,v retrieving revision 1.20 retrieving revision 1.21 diff -u -b -r1.20 -r1.21 --- ConsoleConfigurationWizardPage.java 14 May 2006 21:10:58 -0000 1.20 +++ ConsoleConfigurationWizardPage.java 7 Jul 2006 13:51:10 -0000 1.21 @@ -1,7 +1,23 @@ /* - * Created on 2004-10-13 + * 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.hibernate.eclipse.console.wizards; 1.8 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewConfigurationWizardPage.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NewConfigurationWizardPage.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewConfigurationWizardPage.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- NewConfigurationWizardPage.java 2 Oct 2005 17:39:00 -0000 1.7 +++ NewConfigurationWizardPage.java 7 Jul 2006 13:51:10 -0000 1.8 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import org.eclipse.core.resources.IContainer; 1.3 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterContentProvider.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TableFilterContentProvider.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterContentProvider.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- TableFilterContentProvider.java 9 Sep 2005 23:09:22 -0000 1.2 +++ TableFilterContentProvider.java 7 Jul 2006 13:51:10 -0000 1.3 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; 1.3 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewHibernateMappingFilePage.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NewHibernateMappingFilePage.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/NewHibernateMappingFilePage.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- NewHibernateMappingFilePage.java 29 Apr 2006 15:48:25 -0000 1.2 +++ NewHibernateMappingFilePage.java 7 Jul 2006 13:51:10 -0000 1.3 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import org.eclipse.core.resources.IResource; 1.3 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TypeMappingLabelProvider.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TypeMappingLabelProvider.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TypeMappingLabelProvider.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- TypeMappingLabelProvider.java 27 Jan 2006 00:52:31 -0000 1.2 +++ TypeMappingLabelProvider.java 7 Jul 2006 13:51:10 -0000 1.3 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; 1.11 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterView.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TableFilterView.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterView.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -b -r1.10 -r1.11 --- TableFilterView.java 24 Mar 2006 19:21:39 -0000 1.10 +++ TableFilterView.java 7 Jul 2006 13:51:10 -0000 1.11 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; 1.7 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/UpDownListComposite.java (In the diff below, changes in quantity of whitespace are not shown.) Index: UpDownListComposite.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/UpDownListComposite.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- UpDownListComposite.java 2 Dec 2005 22:23:32 -0000 1.6 +++ UpDownListComposite.java 7 Jul 2006 13:51:10 -0000 1.7 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.wizards; import java.util.Iterator; 1.4 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TypeMappingCellModifier.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TypeMappingCellModifier.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TypeMappingCellModifier.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- TypeMappingCellModifier.java 27 Jan 2006 00:52:31 -0000 1.3 +++ TypeMappingCellModifier.java 7 Jul 2006 13:51:10 -0000 1.4 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; 1.2 +20 -2 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterLabelProvider.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TableFilterLabelProvider.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/TableFilterLabelProvider.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- TableFilterLabelProvider.java 2 Sep 2005 08:02:52 -0000 1.1 +++ TableFilterLabelProvider.java 7 Jul 2006 13:51:10 -0000 1.2 @@ -1,5 +1,23 @@ -/** +/* + * 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.hibernate.eclipse.console.wizards; |
From: Max R. A. <man...@jb...> - 2006-07-07 13:51:19
|
User: mandersen Date: 06/07/07 09:51:12 Modified: hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures PersistentClassFigure.java PropertiesFigure.java RoundedLineBorder.java EditableLabel.java FiguresConstants.java NodeHeaderFigure.java TableFigure.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.5 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/PersistentClassFigure.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PersistentClassFigure.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/PersistentClassFigure.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- PersistentClassFigure.java 20 Apr 2006 15:11:30 -0000 1.4 +++ PersistentClassFigure.java 7 Jul 2006 13:51:11 -0000 1.5 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.graph.figures; import org.eclipse.draw2d.ColorConstants; 1.3 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/PropertiesFigure.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PropertiesFigure.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/PropertiesFigure.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- PropertiesFigure.java 21 Aug 2005 19:49:05 -0000 1.2 +++ PropertiesFigure.java 7 Jul 2006 13:51:11 -0000 1.3 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.graph.figures; import org.eclipse.draw2d.AbstractBorder; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/RoundedLineBorder.java (In the diff below, changes in quantity of whitespace are not shown.) Index: RoundedLineBorder.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/RoundedLineBorder.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- RoundedLineBorder.java 21 Aug 2005 19:49:05 -0000 1.1 +++ RoundedLineBorder.java 7 Jul 2006 13:51:11 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.graph.figures; import org.eclipse.draw2d.Graphics; 1.3 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/EditableLabel.java (In the diff below, changes in quantity of whitespace are not shown.) Index: EditableLabel.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/EditableLabel.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- EditableLabel.java 7 Feb 2006 16:17:48 -0000 1.2 +++ EditableLabel.java 7 Jul 2006 13:51:11 -0000 1.3 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.graph.figures; import org.eclipse.draw2d.ColorConstants; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/FiguresConstants.java (In the diff below, changes in quantity of whitespace are not shown.) Index: FiguresConstants.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/FiguresConstants.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- FiguresConstants.java 19 Apr 2006 05:01:44 -0000 1.1 +++ FiguresConstants.java 7 Jul 2006 13:51:11 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.graph.figures; 1.3 +19 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/NodeHeaderFigure.java (In the diff below, changes in quantity of whitespace are not shown.) Index: NodeHeaderFigure.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/NodeHeaderFigure.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- NodeHeaderFigure.java 29 Apr 2006 15:48:26 -0000 1.2 +++ NodeHeaderFigure.java 7 Jul 2006 13:51:11 -0000 1.3 @@ -17,6 +17,25 @@ * 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:/* + * 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.hibernate.eclipse.graph.figures; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/TableFigure.java (In the diff below, changes in quantity of whitespace are not shown.) Index: TableFigure.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/graph/figures/TableFigure.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- TableFigure.java 9 Sep 2005 23:09:22 -0000 1.1 +++ TableFigure.java 7 Jul 2006 13:51:11 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.graph.figures; import org.eclipse.draw2d.ColorConstants; |
From: Max R. A. <man...@jb...> - 2006-07-07 13:51:18
|
User: mandersen Date: 06/07/07 09:51:13 Modified: hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator PendingJob.java PendingUIJob.java PendingNode.java ClearPlaceHolderJob.java KnownConfigurationsNaviagtor.java AdaptableWrapper.java Log: JBIDE-276 - lgpl headers Revision Changes Path 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingJob.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PendingJob.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingJob.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- PendingJob.java 1 Jun 2006 22:42:47 -0000 1.1 +++ PendingJob.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.views.navigator; import java.util.ArrayList; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingUIJob.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PendingUIJob.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingUIJob.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- PendingUIJob.java 1 Jun 2006 22:42:47 -0000 1.1 +++ PendingUIJob.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.views.navigator; import org.eclipse.core.runtime.IProgressMonitor; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingNode.java (In the diff below, changes in quantity of whitespace are not shown.) Index: PendingNode.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingNode.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- PendingNode.java 1 Jun 2006 22:42:47 -0000 1.1 +++ PendingNode.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.views.navigator; import org.eclipse.swt.graphics.Image; 1.2 +21 -3 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/ClearPlaceHolderJob.java (In the diff below, changes in quantity of whitespace are not shown.) Index: ClearPlaceHolderJob.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/ClearPlaceHolderJob.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- ClearPlaceHolderJob.java 1 Jun 2006 22:42:47 -0000 1.1 +++ ClearPlaceHolderJob.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -5,9 +5,27 @@ * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ + * Contributors:/* + * 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.hibernate.eclipse.console.views.navigator; import org.eclipse.core.runtime.IProgressMonitor; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/KnownConfigurationsNaviagtor.java (In the diff below, changes in quantity of whitespace are not shown.) Index: KnownConfigurationsNaviagtor.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/KnownConfigurationsNaviagtor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- KnownConfigurationsNaviagtor.java 1 Jun 2006 22:42:47 -0000 1.1 +++ KnownConfigurationsNaviagtor.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.views.navigator; import org.eclipse.core.runtime.IAdaptable; 1.2 +21 -0 jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/AdaptableWrapper.java (In the diff below, changes in quantity of whitespace are not shown.) Index: AdaptableWrapper.java =================================================================== RCS file: /cvsroot/jboss/jbosside/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/AdaptableWrapper.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- AdaptableWrapper.java 1 Jun 2006 22:42:47 -0000 1.1 +++ AdaptableWrapper.java 7 Jul 2006 13:51:13 -0000 1.2 @@ -1,3 +1,24 @@ +/* + * 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.hibernate.eclipse.console.views.navigator; import org.eclipse.core.runtime.IAdaptable; |