diff options
author | Venkata Harish K Kajur <vk250x@att.com> | 2017-09-07 18:39:48 -0400 |
---|---|---|
committer | Venkata Harish K Kajur <vk250x@att.com> | 2017-09-08 09:03:41 -0400 |
commit | 89ac8a5dd858554fe7f183a114d3b447365c465f (patch) | |
tree | aa80bd5e35a8c634cd86d343f42279de7fa059a0 | |
parent | 0e0b47691990bac87cf824de4baa61b432a280f7 (diff) |
Add name to the top level pom for rest-client
Issue-ID: AAI-271
Change-Id: I1a66b2042a2a775c55fc8cde021e56bd45a5ef3a
Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
5 files changed, 89 insertions, 1 deletions
@@ -10,7 +10,7 @@ <groupId>org.openecomp.aai</groupId> <artifactId>rest-client</artifactId> <version>1.1.0-SNAPSHOT</version> - <name>REST Client</name> + <name>AAI - rest-client</name> <properties> <checkstyle.config.location>google_checks.xml</checkstyle.config.location> diff --git a/src/test/java/org/openecomp/restclient/client/OperationResultTest.java b/src/test/java/org/openecomp/restclient/client/OperationResultTest.java index df85877..77e6e29 100644 --- a/src/test/java/org/openecomp/restclient/client/OperationResultTest.java +++ b/src/test/java/org/openecomp/restclient/client/OperationResultTest.java @@ -1,3 +1,25 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017 Amdocs + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * + * ECOMP is a trademark and service mark of AT&T Intellectual Property. + */ package org.openecomp.restclient.client; import static org.junit.Assert.assertEquals; diff --git a/src/test/java/org/openecomp/restclient/enums/RestAuthenticationModeTest.java b/src/test/java/org/openecomp/restclient/enums/RestAuthenticationModeTest.java index f4b280b..ebdddbf 100644 --- a/src/test/java/org/openecomp/restclient/enums/RestAuthenticationModeTest.java +++ b/src/test/java/org/openecomp/restclient/enums/RestAuthenticationModeTest.java @@ -1,3 +1,25 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017 Amdocs + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * + * ECOMP is a trademark and service mark of AT&T Intellectual Property. + */ package org.openecomp.restclient.enums; import static org.junit.Assert.assertEquals; diff --git a/src/test/java/org/openecomp/restclient/rest/HttpUtilTest.java b/src/test/java/org/openecomp/restclient/rest/HttpUtilTest.java index d1d88ea..9eb0362 100644 --- a/src/test/java/org/openecomp/restclient/rest/HttpUtilTest.java +++ b/src/test/java/org/openecomp/restclient/rest/HttpUtilTest.java @@ -1,3 +1,25 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.aai + * ================================================================================ + * Copyright © 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017 Amdocs + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * + * ECOMP is a trademark and service mark of AT&T Intellectual Property. + */ package org.openecomp.restclient.rest; import static org.junit.Assert.assertFalse; diff --git a/src/test/java/org/openecomp/restclient/rest/RestClientBuilderTest.java b/src/test/java/org/openecomp/restclient/rest/RestClientBuilderTest.java index e299e36..1481c06 100644 --- a/src/test/java/org/openecomp/restclient/rest/RestClientBuilderTest.java +++ b/src/test/java/org/openecomp/restclient/rest/RestClientBuilderTest.java @@ -1,3 +1,25 @@ +/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017 Amdocs
+ * ================================================================================
+ * 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.
+ * ============LICENSE_END=========================================================
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ */
package org.openecomp.restclient.rest;
import static org.junit.Assert.assertEquals;
|