You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2011/04/30 20:34:52 UTC

svn commit: r1098135 - in /incubator/isis/trunk/examples: claims/dom/src/main/java/org/apache/isis/example/claims/dom/employee/ claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/ claims/viewer-bdd/src/test/java/org/apache/isis/example/clai...

Author: danhaywood
Date: Sat Apr 30 18:34:51 2011
New Revision: 1098135

URL: http://svn.apache.org/viewvc?rev=1098135&view=rev
Log:
adding missing license statements to Java files; added addmissinglicenses.groovy utility script

Modified:
    incubator/isis/trunk/examples/claims/dom/src/main/java/org/apache/isis/example/claims/dom/employee/EmployeeTakeOn.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/AbstractApplicationStory.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInExplorationMode.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInPrototypeMode.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/Employees.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/AllStories.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Fixture.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Index.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioDefaultsOk.java
    incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioOnceCreatedShowsUpForClaimant.java
    incubator/isis/trunk/examples/groovy-testapp/claims/commandline/src/test/java/StartWicketViewer.java
    incubator/isis/trunk/examples/groovy-testapp/claims/dom/src/main/java/images/Dummy.java
    incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/claim/ClaimRepositoryInMemory.java
    incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/employee/EmployeeRepositoryInMemory.java

Modified: incubator/isis/trunk/examples/claims/dom/src/main/java/org/apache/isis/example/claims/dom/employee/EmployeeTakeOn.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/dom/src/main/java/org/apache/isis/example/claims/dom/employee/EmployeeTakeOn.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/dom/src/main/java/org/apache/isis/example/claims/dom/employee/EmployeeTakeOn.java (original)
+++ incubator/isis/trunk/examples/claims/dom/src/main/java/org/apache/isis/example/claims/dom/employee/EmployeeTakeOn.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.dom.employee;
 
 import org.apache.isis.applib.AbstractDomainObject;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/AbstractApplicationStory.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/AbstractApplicationStory.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/AbstractApplicationStory.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/AbstractApplicationStory.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims;
 
 import org.apache.isis.viewer.bdd.concordion.AbstractIsisConcordionScenario;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInExplorationMode.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInExplorationMode.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInExplorationMode.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInExplorationMode.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.common;
 
 import org.apache.isis.viewer.bdd.concordion.AbstractIsisConcordionScenario;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInPrototypeMode.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInPrototypeMode.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInPrototypeMode.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/BootstrapInPrototypeMode.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.common;
 
 import org.apache.isis.viewer.bdd.concordion.AbstractIsisConcordionScenario;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/Employees.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/Employees.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/Employees.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/common/Employees.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.common;
 
 import org.apache.isis.viewer.bdd.concordion.AbstractIsisConcordionScenario;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/AllStories.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/AllStories.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/AllStories.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/AllStories.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.stories;
 
 import org.apache.isis.example.claims.AbstractApplicationStory;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Fixture.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Fixture.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Fixture.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Fixture.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.stories.newClaim;
 
 import org.apache.isis.example.claims.AbstractApplicationStory;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Index.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Index.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Index.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/Index.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.stories.newClaim;
 
 import org.apache.isis.example.claims.AbstractApplicationStory;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioDefaultsOk.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioDefaultsOk.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioDefaultsOk.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioDefaultsOk.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.stories.newClaim;
 
 import org.apache.isis.example.claims.AbstractApplicationStory;

Modified: incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioOnceCreatedShowsUpForClaimant.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioOnceCreatedShowsUpForClaimant.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioOnceCreatedShowsUpForClaimant.java (original)
+++ incubator/isis/trunk/examples/claims/viewer-bdd/src/test/java/org/apache/isis/example/claims/stories/newClaim/ScenarioOnceCreatedShowsUpForClaimant.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.example.claims.stories.newClaim;
 
 import org.apache.isis.example.claims.AbstractApplicationStory;

Modified: incubator/isis/trunk/examples/groovy-testapp/claims/commandline/src/test/java/StartWicketViewer.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/groovy-testapp/claims/commandline/src/test/java/StartWicketViewer.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/groovy-testapp/claims/commandline/src/test/java/StartWicketViewer.java (original)
+++ incubator/isis/trunk/examples/groovy-testapp/claims/commandline/src/test/java/StartWicketViewer.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.
+ */
 
 
 import org.mortbay.jetty.Connector;

Modified: incubator/isis/trunk/examples/groovy-testapp/claims/dom/src/main/java/images/Dummy.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/groovy-testapp/claims/dom/src/main/java/images/Dummy.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/groovy-testapp/claims/dom/src/main/java/images/Dummy.java (original)
+++ incubator/isis/trunk/examples/groovy-testapp/claims/dom/src/main/java/images/Dummy.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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 images;
 
 /**

Modified: incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/claim/ClaimRepositoryInMemory.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/claim/ClaimRepositoryInMemory.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/claim/ClaimRepositoryInMemory.java (original)
+++ incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/claim/ClaimRepositoryInMemory.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.extensions.groovy.testapp.claims.service.claim;
 
 import java.util.List;

Modified: incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/employee/EmployeeRepositoryInMemory.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/employee/EmployeeRepositoryInMemory.java?rev=1098135&r1=1098134&r2=1098135&view=diff
==============================================================================
--- incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/employee/EmployeeRepositoryInMemory.java (original)
+++ incubator/isis/trunk/examples/groovy-testapp/claims/service/src/main/java/org/apache/isis/extensions/groovy/testapp/claims/service/employee/EmployeeRepositoryInMemory.java Sat Apr 30 18:34:51 2011
@@ -1,3 +1,21 @@
+/*
+ *  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.isis.extensions.groovy.testapp.claims.service.employee;
 
 import java.util.List;