[jboss-svn-commits] JBoss Common SVN: r3011 - jboss-logbridge/trunk/src/main/java/org/jboss/logbridge.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Mar 5 12:38:42 EST 2009
Author: david.lloyd at jboss.com
Date: 2009-03-05 12:38:42 -0500 (Thu, 05 Mar 2009)
New Revision: 3011
Modified:
jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LevelMapper.java
jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LogBridgeHandler.java
jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/SourceLevelKey.java
jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevel.java
jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevelKey.java
Log:
Copyright headers
Modified: jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LevelMapper.java
===================================================================
--- jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LevelMapper.java 2009-03-05 17:35:49 UTC (rev 3010)
+++ jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LevelMapper.java 2009-03-05 17:38:42 UTC (rev 3011)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.logbridge;
import java.util.SortedMap;
Modified: jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LogBridgeHandler.java
===================================================================
--- jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LogBridgeHandler.java 2009-03-05 17:35:49 UTC (rev 3010)
+++ jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/LogBridgeHandler.java 2009-03-05 17:38:42 UTC (rev 3011)
@@ -1,8 +1,8 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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
Modified: jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/SourceLevelKey.java
===================================================================
--- jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/SourceLevelKey.java 2009-03-05 17:35:49 UTC (rev 3010)
+++ jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/SourceLevelKey.java 2009-03-05 17:38:42 UTC (rev 3011)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.logbridge;
import java.lang.ref.WeakReference;
Modified: jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevel.java
===================================================================
--- jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevel.java 2009-03-05 17:35:49 UTC (rev 3010)
+++ jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevel.java 2009-03-05 17:38:42 UTC (rev 3011)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.logbridge;
public final class TargetLevel extends org.apache.log4j.Level {
Modified: jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevelKey.java
===================================================================
--- jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevelKey.java 2009-03-05 17:35:49 UTC (rev 3010)
+++ jboss-logbridge/trunk/src/main/java/org/jboss/logbridge/TargetLevelKey.java 2009-03-05 17:38:42 UTC (rev 3011)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.logbridge;
import org.apache.log4j.Level;
More information about the jboss-svn-commits
mailing list