[jboss-svn-commits] JBL Code SVN: r33953 - in labs/jbossrules/trunk/drools-atom/src: main/java/org/drools/repository and 2 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Jul 16 11:59:59 EDT 2010
Author: Rikkola
Date: 2010-07-16 11:59:58 -0400 (Fri, 16 Jul 2010)
New Revision: 33953
Modified:
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/AtomRulesRepository.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundDetails.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundFault.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Artifact.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/ArtifactManager.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/LifeCycle.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/MetaData.java
labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Phase.java
labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/AtomRulesRepositoryServer.java
labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/ClientServerAtomRulesRepositoryTest.java
labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/repository/ArtifactManagerTest.java
Log:
[#JBRULES-2577] License headers are missing for most of the files
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/AtomRulesRepository.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/AtomRulesRepository.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/AtomRulesRepository.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,4 +1,20 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.atom;
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundDetails.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundDetails.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundDetails.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.atom;
import javax.xml.bind.annotation.XmlRootElement;
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundFault.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundFault.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/atom/ResourceNotFoundFault.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.atom;
import javax.xml.ws.WebFault;
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Artifact.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Artifact.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Artifact.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.repository;
import java.io.InputStream;
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/ArtifactManager.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/ArtifactManager.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/ArtifactManager.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.repository;
import java.io.InputStream;
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/LifeCycle.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/LifeCycle.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/LifeCycle.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.repository;
import java.util.ArrayList;
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/MetaData.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/MetaData.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/MetaData.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.repository;
public class MetaData {
Modified: labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Phase.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Phase.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/main/java/org/drools/repository/Phase.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.repository;
public class Phase {
Modified: labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/AtomRulesRepositoryServer.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/AtomRulesRepositoryServer.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/AtomRulesRepositoryServer.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,4 +1,20 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.atom;
import java.util.ArrayList;
Modified: labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/ClientServerAtomRulesRepositoryTest.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/ClientServerAtomRulesRepositoryTest.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/atom/ClientServerAtomRulesRepositoryTest.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,4 +1,20 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.atom;
import java.io.File;
Modified: labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/repository/ArtifactManagerTest.java
===================================================================
--- labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/repository/ArtifactManagerTest.java 2010-07-16 15:56:27 UTC (rev 33952)
+++ labs/jbossrules/trunk/drools-atom/src/test/java/org/drools/repository/ArtifactManagerTest.java 2010-07-16 15:59:58 UTC (rev 33953)
@@ -1,3 +1,19 @@
+/**
+ * Copyright 2010 JBoss Inc
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.drools.repository;
import java.io.File;
More information about the jboss-svn-commits
mailing list