From 83c8761d525ddf285a827b233c985fc6cb7fda44 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Thu, 29 May 2014 17:09:57 -0400 Subject: [PATCH] Adding the appropriate license and copyright statements. Change-Id: Iae495e0b7f6b3dae0de95d9fa3e6224311bff5e9 --- examples/00-authentication.go | 14 ++++++++++++++ examples/10-objectstore.go | 14 ++++++++++++++ examples/run-all.sh | 14 ++++++++++++++ examples/setup.go | 14 ++++++++++++++ identity/auth.go | 14 ++++++++++++++ misc/util.go | 14 ++++++++++++++ misc/util_test.go | 14 ++++++++++++++ objectstorage/objectstorage.go | 14 ++++++++++++++ objectstorage/objectstorage_test.go | 14 ++++++++++++++ 9 files changed, 126 insertions(+) diff --git a/examples/00-authentication.go b/examples/00-authentication.go index 19050f1..39ba637 100644 --- a/examples/00-authentication.go +++ b/examples/00-authentication.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 main import ( diff --git a/examples/10-objectstore.go b/examples/10-objectstore.go index 12a2484..94823d3 100644 --- a/examples/10-objectstore.go +++ b/examples/10-objectstore.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 main import ( diff --git a/examples/run-all.sh b/examples/run-all.sh index 41b5022..429c07e 100755 --- a/examples/run-all.sh +++ b/examples/run-all.sh @@ -1,5 +1,19 @@ #!/bin/bash # +# Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +# +# Licensed 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. +# # Enables all the examples to execute as a form of acceptance testing. # Get the directory the examples are in and change into it. diff --git a/examples/setup.go b/examples/setup.go index fdf2ffd..069ea60 100644 --- a/examples/setup.go +++ b/examples/setup.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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. + // The acceptance package is a set of acceptance tests showcasing how the // contents of the package are meant to be used. This is setup in a similar // manner to a consuming application. diff --git a/identity/auth.go b/identity/auth.go index dd92f13..5383175 100644 --- a/identity/auth.go +++ b/identity/auth.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 identity provides functions for client-side access to OpenStack //IdentityService. package identity diff --git a/misc/util.go b/misc/util.go index 3df9e4e..fdf6f11 100644 --- a/misc/util.go +++ b/misc/util.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 misc import ( diff --git a/misc/util_test.go b/misc/util_test.go index 6a66777..5c256cc 100644 --- a/misc/util_test.go +++ b/misc/util_test.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 misc_test import ( diff --git a/objectstorage/objectstorage.go b/objectstorage/objectstorage.go index fb50037..e1dfbba 100644 --- a/objectstorage/objectstorage.go +++ b/objectstorage/objectstorage.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 objectstorage import ( diff --git a/objectstorage/objectstorage_test.go b/objectstorage/objectstorage_test.go index 5f3e311..21071e8 100644 --- a/objectstorage/objectstorage_test.go +++ b/objectstorage/objectstorage_test.go @@ -1,3 +1,17 @@ +// Copyright (c) 2014 Hewlett-Packard Development Company, L.P. +// +// Licensed 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 objectstorage_test import (