Removing AJSC and moving to SpringBoot
[aai/search-data-service.git] / src / main / java / org / onap / aai / sa / searchdbabstraction / util / AggregationParsingUtil.java
index 04261f3..76cf227 100644 (file)
@@ -2,8 +2,8 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017 Amdocs
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,8 +17,6 @@
  * 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.onap.aai.sa.searchdbabstraction.util;
 
@@ -33,7 +31,7 @@ import java.util.Set;
 
 public class AggregationParsingUtil {
   public static AggregationResult[] parseAggregationResults(JSONObject aggregations)
-      throws JsonProcessingException {
+    throws JsonProcessingException {
 
     // Obtain the set of aggregation names
     Set keySet = aggregations.keySet();
@@ -67,7 +65,7 @@ public class AggregationParsingUtil {
   }
 
   private static AggregationBucket[] parseAggregationBuckets(JSONArray buckets)
-      throws JsonProcessingException {
+    throws JsonProcessingException {
     AggregationBucket[] aggBuckets = new AggregationBucket[buckets.size()];
     for (int i = 0; i < buckets.size(); i++) {
       AggregationBucket aggBucket = new AggregationBucket();