Null check for ClientResponse in PolicyUril.java
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / controller / AppContactUsController.java
index 9b476e0..611e1bb 100644 (file)
@@ -1,21 +1,39 @@
 /*-
- * ================================================================================
- * ECOMP Portal
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
+ * ============LICENSE_START==========================================
+ * ONAP Portal
+ * ===================================================================
+ * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the “License”);
+ * you may not use this software 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 "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.
- * ================================================================================
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *             https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * 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.portalapp.portal.controller;
 
@@ -63,8 +81,8 @@ public class AppContactUsController extends EPRestrictedBaseController {
         * Answers a JSON object with three items from the system.properties file:
         * user self-help ticket URL, email for feedback, and Portal info link.
         * 
-        * @param request
-        * @return
+        * @param request HttpServletRequest
+        * @return PortalRestResponse
         */
        @RequestMapping(value = "/feedback", method = RequestMethod.GET, produces = "application/json")
        public PortalRestResponse<String> getPortalDetails(HttpServletRequest request) {
@@ -91,8 +109,8 @@ public class AppContactUsController extends EPRestrictedBaseController {
         * Answers the contents of the contact-us table, extended with the
         * application name.
         * 
-        * @param request
-        * @return
+        * @param request HttpServletRequest
+        * @return PortalRestResponse<List<AppContactUsItem>>
         */
        @RequestMapping(value = "/list", method = RequestMethod.GET, produces = "application/json")
        public PortalRestResponse<List<AppContactUsItem>> getAppContactUsList(HttpServletRequest request) {
@@ -113,8 +131,8 @@ public class AppContactUsController extends EPRestrictedBaseController {
         * Answers a list of objects, one per application, extended with available
         * data on how to contact that app's organization (possibly none).
         * 
-        * @param request
-        * @return
+        * @param request HttpServletRequest
+        * @return PortalRestResponse<List<AppContactUsItem>>
         */
        @RequestMapping(value = "/allapps", method = RequestMethod.GET, produces = "application/json")
        public PortalRestResponse<List<AppContactUsItem>> getAppsAndContacts(HttpServletRequest request) {
@@ -145,8 +163,8 @@ public class AppContactUsController extends EPRestrictedBaseController {
         * Answers a list of objects with category-application-function details. Not
         * all applications participate in the functional menu.
         * 
-        * @param request
-        * @return
+        * @param request HttpServletRequest
+        * @return PortalRestResponse<List<AppCategoryFunctionsItem>>
         */
        @RequestMapping(value = "/functions", method = RequestMethod.GET, produces = "application/json")
        public PortalRestResponse<List<AppCategoryFunctionsItem>> getAppCategoryFunctions(HttpServletRequest request) {
@@ -171,8 +189,8 @@ public class AppContactUsController extends EPRestrictedBaseController {
        /**
         * Accepts a new application's contact us details.
         * 
-        * @param contactUs
-        * @return
+        * @param contactUs AppContactUsItem
+        * @return PortalRestResponse<String>
         */
        @RequestMapping(value = "/save", method = RequestMethod.POST, produces = "application/json")
        public PortalRestResponse<String> save(@RequestBody AppContactUsItem contactUs) {
@@ -206,8 +224,8 @@ public class AppContactUsController extends EPRestrictedBaseController {
         * Deletes the specified application's contact-us details entry from the
         * table.
         * 
-        * @param id
-        * @return
+        * @param id app ID
+        * @return PortalRestResponse<String>
         */
        @RequestMapping(value = "/delete/{appid}", method = RequestMethod.POST, produces = "application/json")
        public PortalRestResponse<String> delete(@PathVariable("appid") Long id) {