api license header fixes
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/640087b5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/640087b5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/640087b5 Branch: refs/heads/master Commit: 640087b5343231a2a6dc55635b85b4a2f23fc5fa Parents: a777f51 Author: Chip Childers <[email protected]> Authored: Tue Jul 31 20:31:57 2012 -0400 Committer: Chip Childers <[email protected]> Committed: Tue Jul 31 20:31:57 2012 -0400 ---------------------------------------------------------------------- api/.classpath | 18 ++++++++++++++++ api/.project | 18 ++++++++++++++++ api/src/com/cloud/api/commands/.gitignore | 17 +++++++++++++++ api/src/com/cloud/api/commands/CreateTagsCmd.java | 4 +- api/src/com/cloud/api/commands/DeleteTagsCmd.java | 4 +- api/src/com/cloud/api/commands/ListTagsCmd.java | 4 +- 6 files changed, 59 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/640087b5/api/.classpath ---------------------------------------------------------------------- diff --git a/api/.classpath b/api/.classpath index e4179d9..f8a90fe 100644 --- a/api/.classpath +++ b/api/.classpath @@ -1,4 +1,22 @@ <?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. +--> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/640087b5/api/.project ---------------------------------------------------------------------- diff --git a/api/.project b/api/.project index 0df4729..e70acd0 100644 --- a/api/.project +++ b/api/.project @@ -1,4 +1,22 @@ <?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. +--> <projectDescription> <name>api</name> <comment></comment> http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/640087b5/api/src/com/cloud/api/commands/.gitignore ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/api/commands/.gitignore b/api/src/com/cloud/api/commands/.gitignore index 4ef5c9c..63e3fa0 100644 --- a/api/src/com/cloud/api/commands/.gitignore +++ b/api/src/com/cloud/api/commands/.gitignore @@ -1,3 +1,20 @@ +# 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. + /AddConfigCmd.java /UpdateZoneCmd.java /UpdateZoneCmd.java http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/640087b5/api/src/com/cloud/api/commands/CreateTagsCmd.java ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/api/commands/CreateTagsCmd.java b/api/src/com/cloud/api/commands/CreateTagsCmd.java index a981363..e52b42e 100644 --- a/api/src/com/cloud/api/commands/CreateTagsCmd.java +++ b/api/src/com/cloud/api/commands/CreateTagsCmd.java @@ -6,7 +6,7 @@ // "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 +// 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 @@ -14,7 +14,7 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. -// + package com.cloud.api.commands; import java.util.Collection; http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/640087b5/api/src/com/cloud/api/commands/DeleteTagsCmd.java ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/api/commands/DeleteTagsCmd.java b/api/src/com/cloud/api/commands/DeleteTagsCmd.java index df6e173..2d0d04c 100644 --- a/api/src/com/cloud/api/commands/DeleteTagsCmd.java +++ b/api/src/com/cloud/api/commands/DeleteTagsCmd.java @@ -6,7 +6,7 @@ // "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 +// 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 @@ -14,7 +14,7 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. -// + package com.cloud.api.commands; import java.util.Collection; http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/640087b5/api/src/com/cloud/api/commands/ListTagsCmd.java ---------------------------------------------------------------------- diff --git a/api/src/com/cloud/api/commands/ListTagsCmd.java b/api/src/com/cloud/api/commands/ListTagsCmd.java index 2c22679..40d6c69 100644 --- a/api/src/com/cloud/api/commands/ListTagsCmd.java +++ b/api/src/com/cloud/api/commands/ListTagsCmd.java @@ -6,7 +6,7 @@ // "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 +// 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 @@ -14,7 +14,7 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. -// + package com.cloud.api.commands; import java.util.ArrayList;
