Author: simoneg Date: Tue Jul 21 01:02:41 2009 New Revision: 796099 URL: http://svn.apache.org/viewvc?rev=796099&view=rev Log: LABS-393 : missing Apache headers
Modified: labs/magma/trunk/foundation-maps/pom.xml labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/DefaultGeoLocatedImplementation.aj labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoAware.java labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoCoordinates.java labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoLocated.java labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolvable.java labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolver.java Modified: labs/magma/trunk/foundation-maps/pom.xml URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/pom.xml?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/pom.xml (original) +++ labs/magma/trunk/foundation-maps/pom.xml Tue Jul 21 01:02:41 2009 @@ -1,4 +1,20 @@ <?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. +--> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <parent> <artifactId>magma-parent</artifactId> @@ -29,4 +45,4 @@ <version>0.0.2-SNAPSHOT</version> </dependency> </dependencies> -</project> \ No newline at end of file +</project> Modified: labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/DefaultGeoLocatedImplementation.aj URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/DefaultGeoLocatedImplementation.aj?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/DefaultGeoLocatedImplementation.aj (original) +++ labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/DefaultGeoLocatedImplementation.aj Tue Jul 21 01:02:41 2009 @@ -1,3 +1,19 @@ +/* + * 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.magma.maps; public aspect DefaultGeoLocatedImplementation { Modified: labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoAware.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoAware.java?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoAware.java (original) +++ labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoAware.java Tue Jul 21 01:02:41 2009 @@ -1,3 +1,19 @@ +/* + * 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.magma.maps; public interface GeoAware { Modified: labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoCoordinates.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoCoordinates.java?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoCoordinates.java (original) +++ labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoCoordinates.java Tue Jul 21 01:02:41 2009 @@ -1,3 +1,19 @@ +/* + * 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.magma.maps; import java.text.DecimalFormat; Modified: labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoLocated.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoLocated.java?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoLocated.java (original) +++ labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoLocated.java Tue Jul 21 01:02:41 2009 @@ -1,3 +1,19 @@ +/* + * 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.magma.maps; import javax.persistence.Embedded; Modified: labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolvable.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolvable.java?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolvable.java (original) +++ labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolvable.java Tue Jul 21 01:02:41 2009 @@ -1,3 +1,19 @@ +/* + * 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.magma.maps; public interface GeoResolvable extends GeoLocated { Modified: labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolver.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolver.java?rev=796099&r1=796098&r2=796099&view=diff ============================================================================== --- labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolver.java (original) +++ labs/magma/trunk/foundation-maps/src/main/java/org/apache/magma/maps/GeoResolver.java Tue Jul 21 01:02:41 2009 @@ -1,3 +1,19 @@ +/* + * 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.magma.maps; public class GeoResolver { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@labs.apache.org For additional commands, e-mail: commits-h...@labs.apache.org