Author: simoneg Date: Tue Jul 21 00:59:40 2009 New Revision: 796098 URL: http://svn.apache.org/viewvc?rev=796098&view=rev Log: LABS-393 : missing Apache headers
Modified: labs/magma/trunk/foundation-jobs/pom.xml labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Every.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/FineEvery.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Job.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobStatus.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsAreMagmaBeans.aj labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsCycling.aj labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Report.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Scheduler.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/SimpleTrigger.java labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Trigger.java Modified: labs/magma/trunk/foundation-jobs/pom.xml URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/pom.xml?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/pom.xml (original) +++ labs/magma/trunk/foundation-jobs/pom.xml Tue Jul 21 00:59:40 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> @@ -19,4 +35,4 @@ <version>0.0.2-SNAPSHOT</version> </dependency> </dependencies> -</project> \ No newline at end of file +</project> Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Every.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Every.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Every.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Every.java Tue Jul 21 00:59:40 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.jobs; public enum Every implements SimpleTrigger { Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/FineEvery.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/FineEvery.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/FineEvery.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/FineEvery.java Tue Jul 21 00:59:40 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.jobs; public class FineEvery implements SimpleTrigger { Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Job.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Job.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Job.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Job.java Tue Jul 21 00:59:40 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.jobs; import org.apache.magma.beans.MagmaBeanSupport; Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobStatus.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobStatus.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobStatus.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobStatus.java Tue Jul 21 00:59:40 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.jobs; import java.util.Date; Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsAreMagmaBeans.aj URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsAreMagmaBeans.aj?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsAreMagmaBeans.aj (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsAreMagmaBeans.aj Tue Jul 21 00:59:40 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.jobs; import org.apache.magma.beans.MagmaBeanSupport; Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsCycling.aj URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsCycling.aj?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsCycling.aj (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/JobsCycling.aj Tue Jul 21 00:59:40 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.jobs; import org.apache.magma.basics.startup.Cycle; Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Report.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Report.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Report.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Report.java Tue Jul 21 00:59:40 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.jobs; public class Report { Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Scheduler.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Scheduler.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Scheduler.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Scheduler.java Tue Jul 21 00:59:40 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.jobs; import java.util.List; Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/SimpleTrigger.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/SimpleTrigger.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/SimpleTrigger.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/SimpleTrigger.java Tue Jul 21 00:59:40 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.jobs; public interface SimpleTrigger extends Trigger { Modified: labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Trigger.java URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Trigger.java?rev=796098&r1=796097&r2=796098&view=diff ============================================================================== --- labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Trigger.java (original) +++ labs/magma/trunk/foundation-jobs/src/main/java/org/apache/magma/jobs/Trigger.java Tue Jul 21 00:59:40 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.jobs; public interface Trigger { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@labs.apache.org For additional commands, e-mail: commits-h...@labs.apache.org