Return-Path: X-Original-To: apmail-incubator-isis-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-isis-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5BAE33234 for ; Sat, 30 Apr 2011 18:35:19 +0000 (UTC) Received: (qmail 56170 invoked by uid 500); 30 Apr 2011 18:35:19 -0000 Delivered-To: apmail-incubator-isis-commits-archive@incubator.apache.org Received: (qmail 56154 invoked by uid 500); 30 Apr 2011 18:35:19 -0000 Mailing-List: contact isis-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: isis-dev@incubator.apache.org Delivered-To: mailing list isis-commits@incubator.apache.org Received: (qmail 56147 invoked by uid 99); 30 Apr 2011 18:35:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Apr 2011 18:35:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Apr 2011 18:35:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3EF5123888FD; Sat, 30 Apr 2011 18:34:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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... Date: Sat, 30 Apr 2011 18:34:52 -0000 To: isis-commits@incubator.apache.org From: danhaywood@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110430183452.3EF5123888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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;