You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2010/09/04 21:09:33 UTC

svn commit: r992663 - in /directory/sandbox/studio-persistence-tooling: persistence-core/src/main/java/org/apache/directory/studio/persistence/core/ persistence-core/src/test/java/org/apache/directory/studio/persistence/core/ persistence-example/src/ma...

Author: seelmann
Date: Sat Sep  4 19:09:32 2010
New Revision: 992663

URL: http://svn.apache.org/viewvc?rev=992663&view=rev
Log:
Fix for DIRSTUDIO-691 (Add missing Apache License header to source files), applied patch of Kasun Lakpriya

Modified:
    directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/CodeGenerator.java
    directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/JavaUtils.java
    directory/sandbox/studio-persistence-tooling/persistence-core/src/test/java/org/apache/directory/studio/persistence/core/JavaUtilsTest.java
    directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/GenericLdapDao.java
    directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/InetOrgPersonDao.java
    directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/domain/InetOrgPerson.java
    directory/sandbox/studio-persistence-tooling/persistence-example/src/test/java/com/example/dao/InetOrgPersonDaoTest.java
    directory/sandbox/studio-persistence-tooling/persistence-ui/plugin.xml
    directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/DaoRequiredParametersWizardPage.java
    directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/TableColumnSorter.java

Modified: directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/CodeGenerator.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/CodeGenerator.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/CodeGenerator.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/CodeGenerator.java Sat Sep  4 19:09:32 2010
@@ -195,6 +195,7 @@ public class CodeGenerator
         }
     }
 
+
     /**
      * Setup the EntryProperties objects with appropriate writtenJavaType, 
      * writtenMapFromEntry and writtenMapToEntry values. But this method logic

Modified: directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/JavaUtils.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/JavaUtils.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/JavaUtils.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-core/src/main/java/org/apache/directory/studio/persistence/core/JavaUtils.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *   Licensed to the Apache Software Foundation (ASF) under one
+ *   or more contributor license agreements.  See the NOTICE file
+ *   distributed with this work for additional information
+ *   regarding copyright ownership.  The ASF licenses this file
+ *   to you 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.apache.directory.studio.persistence.core;
 
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-core/src/test/java/org/apache/directory/studio/persistence/core/JavaUtilsTest.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-core/src/test/java/org/apache/directory/studio/persistence/core/JavaUtilsTest.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-core/src/test/java/org/apache/directory/studio/persistence/core/JavaUtilsTest.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-core/src/test/java/org/apache/directory/studio/persistence/core/JavaUtilsTest.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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.apache.directory.studio.persistence.core;
 
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/GenericLdapDao.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/GenericLdapDao.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/GenericLdapDao.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/GenericLdapDao.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 com.example.dao;
 
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/InetOrgPersonDao.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/InetOrgPersonDao.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/InetOrgPersonDao.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/dao/InetOrgPersonDao.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 com.example.dao;
 
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/domain/InetOrgPerson.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/domain/InetOrgPerson.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/domain/InetOrgPerson.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-example/src/main/java/com/example/domain/InetOrgPerson.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 com.example.domain;
 
 import java.util.HashSet; // TODO

Modified: directory/sandbox/studio-persistence-tooling/persistence-example/src/test/java/com/example/dao/InetOrgPersonDaoTest.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-example/src/test/java/com/example/dao/InetOrgPersonDaoTest.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-example/src/test/java/com/example/dao/InetOrgPersonDaoTest.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-example/src/test/java/com/example/dao/InetOrgPersonDaoTest.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,22 @@
+/*
+ *   Licensed to the Apache Software Foundation (ASF) under one
+ *   or more contributor license agreements.  See the NOTICE file
+ *   distributed with this work for additional information
+ *   regarding copyright ownership.  The ASF licenses this file
+ *   to you 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 com.example.dao;
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-ui/plugin.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-ui/plugin.xml?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-ui/plugin.xml (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-ui/plugin.xml Sat Sep  4 19:09:32 2010
@@ -1,4 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
+	<!--
+		Licensed to the Apache Software Foundation (ASF) under one or more
+		contributor license agreements. See the NOTICE file distributed with
+		this work for additional information regarding copyright ownership.
+		The ASF licenses this file to You 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.
+	-->
 <?eclipse version="3.4"?>
 <plugin>
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/DaoRequiredParametersWizardPage.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/DaoRequiredParametersWizardPage.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/DaoRequiredParametersWizardPage.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/DaoRequiredParametersWizardPage.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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.apache.directory.studio.persistence.view.wizards;
 
 

Modified: directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/TableColumnSorter.java
URL: http://svn.apache.org/viewvc/directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/TableColumnSorter.java?rev=992663&r1=992662&r2=992663&view=diff
==============================================================================
--- directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/TableColumnSorter.java (original)
+++ directory/sandbox/studio-persistence-tooling/persistence-ui/src/main/java/org/apache/directory/studio/persistence/view/wizards/TableColumnSorter.java Sat Sep  4 19:09:32 2010
@@ -1,3 +1,23 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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.apache.directory.studio.persistence.view.wizards;