From 0f12815d373a4a656bca88e3093128c1fda4ae80 Mon Sep 17 00:00:00 2001 From: "Benjamin, Max (mb388a)" Date: Thu, 2 Aug 2018 11:34:07 -0400 Subject: update infra apihandler to utilize rest rather than direct access Change-Id: I0cd3d3902e32249263298f91263401ce05c34be3 Issue-ID: SO-790 Signed-off-by: Benjamin, Max (mb388a) --- .../so/db/request/beans/InfraActiveRequests.java | 2 + .../InstanceNameDuplicateCheckRequest.java | 63 ++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/data/controller/InstanceNameDuplicateCheckRequest.java (limited to 'mso-api-handlers/mso-requests-db/src/main') diff --git a/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraActiveRequests.java b/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraActiveRequests.java index 84ff458698..924f8870d3 100644 --- a/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraActiveRequests.java +++ b/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/beans/InfraActiveRequests.java @@ -25,11 +25,13 @@ import java.util.Objects; import javax.persistence.Entity; import javax.persistence.Table; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.apache.commons.lang3.builder.ToStringBuilder; /** * InfraActiveRequests generated by hbm2java */ +@JsonIgnoreProperties(ignoreUnknown = true) @Entity @Table(name = "infra_active_requests") public class InfraActiveRequests extends InfraRequests { diff --git a/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/data/controller/InstanceNameDuplicateCheckRequest.java b/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/data/controller/InstanceNameDuplicateCheckRequest.java new file mode 100644 index 0000000000..a6f283a264 --- /dev/null +++ b/mso-api-handlers/mso-requests-db/src/main/java/org/onap/so/db/request/data/controller/InstanceNameDuplicateCheckRequest.java @@ -0,0 +1,63 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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========================================================= + */ + +package org.onap.so.db.request.data.controller; + +import java.util.HashMap; + +public class InstanceNameDuplicateCheckRequest { + + private HashMap instanceIdMap; + private String instanceName; + private String requestScope; + + public InstanceNameDuplicateCheckRequest() { + } + + public InstanceNameDuplicateCheckRequest(HashMap instanceIdMap, String instanceName, String requestScope) { + this.instanceIdMap = instanceIdMap; + this.instanceName = instanceName; + this.requestScope = requestScope; + } + + public HashMap getInstanceIdMap() { + return instanceIdMap; + } + + public void setInstanceIdMap(HashMap instanceIdMap) { + this.instanceIdMap = instanceIdMap; + } + + public String getInstanceName() { + return instanceName; + } + + public void setInstanceName(String instanceName) { + this.instanceName = instanceName; + } + + public String getRequestScope() { + return requestScope; + } + + public void setRequestScope(String requestScope) { + this.requestScope = requestScope; + } +} -- cgit 1.2.3-korg