From a6557b0429dbe94a3806be237d9ba5aa7c4b183c Mon Sep 17 00:00:00 2001 From: Pamela Dragosh Date: Tue, 14 Feb 2017 19:49:32 -0500 Subject: Initial OpenECOMP policy/drools-applications commt Change-Id: I21c0edbf9b7f18dccd6bd4fe2a3287f3a68e6de0 Signed-off-by: Pamela Dragosh --- .../org/openecomp/policy/sdnc/SDNCRequest.java | 42 +++++++++++++++++ .../openecomp/policy/sdnc/SDNCRequestHeader.java | 47 +++++++++++++++++++ .../policy/sdnc/SDNCRequestInformation.java | 52 +++++++++++++++++++++ .../openecomp/policy/sdnc/SDNCRequestInput.java | 46 +++++++++++++++++++ .../openecomp/policy/sdnc/SDNCVnfAssignments.java | 50 ++++++++++++++++++++ .../policy/sdnc/SDNCVnfTopologyIdentifier.java | 53 ++++++++++++++++++++++ .../policy/sdnc/SDNCVnfTopologyInformation.java | 49 ++++++++++++++++++++ .../openecomp/policy/sdnc/util/Serialization.java | 32 +++++++++++++ 8 files changed, 371 insertions(+) create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequest.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestHeader.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInformation.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInput.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfAssignments.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyIdentifier.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyInformation.java create mode 100644 sdnc/src/main/java/org/openecomp/policy/sdnc/util/Serialization.java (limited to 'sdnc/src/main/java/org') diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequest.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequest.java new file mode 100644 index 000000000..fe1588a5b --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequest.java @@ -0,0 +1,42 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; + +import com.google.gson.annotations.SerializedName; + +public class SDNCRequest implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + @SerializedName("input") + public SDNCRequestInput input; + + + + public SDNCRequest() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestHeader.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestHeader.java new file mode 100644 index 000000000..84c3f3cdc --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestHeader.java @@ -0,0 +1,47 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; + +import com.google.gson.annotations.SerializedName; + +public class SDNCRequestHeader implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + @SerializedName("svc-request-id") + public String svcRequestId; + + @SerializedName("svc-notification-url") + public String svcNotificationUrl; + + @SerializedName("svc-action") + public String svcAction; + + + public SDNCRequestHeader() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInformation.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInformation.java new file mode 100644 index 000000000..b895b4afe --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInformation.java @@ -0,0 +1,52 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; + +import com.google.gson.annotations.SerializedName; + +public class SDNCRequestInformation implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + @SerializedName("request-id") + public String requestId; + + @SerializedName("order-version") + public String orderVersion; + + @SerializedName("notification-url") + public String notificationUrl; + + @SerializedName("order-number") + public String orderNumber; + + @SerializedName("request-action") + public String requestAction; + + public SDNCRequestInformation() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInput.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInput.java new file mode 100644 index 000000000..cecd0a268 --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCRequestInput.java @@ -0,0 +1,46 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; + +import com.google.gson.annotations.SerializedName; + +public class SDNCRequestInput implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + @SerializedName("vnf-topology-information") + public SDNCVnfTopologyInformation vnfTopolgyInformation; + + @SerializedName("request-information") + public SDNCRequestInformation requestInformation; + + @SerializedName("sdnc-request-header") + public SDNCRequestHeader requestHeader; + + public SDNCRequestInput() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfAssignments.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfAssignments.java new file mode 100644 index 000000000..8a32c2121 --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfAssignments.java @@ -0,0 +1,50 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; +import java.util.LinkedList; +import java.util.List; + +import com.google.gson.annotations.SerializedName; + +public class SDNCVnfAssignments implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + + @SerializedName("availability-zones") + public List availabilityZones = new LinkedList(); + + + @SerializedName("vnf-networks") + public List vnfNetworks = new LinkedList(); + + @SerializedName("vnf-vms") + public List vnfVms = new LinkedList(); + + public SDNCVnfAssignments() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyIdentifier.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyIdentifier.java new file mode 100644 index 000000000..5b31bd1b2 --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyIdentifier.java @@ -0,0 +1,53 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; + +import com.google.gson.annotations.SerializedName; + +public class SDNCVnfTopologyIdentifier implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + @SerializedName("service-type") + public String serviceType; + + @SerializedName("vnf-name") + public String vnfName; + + @SerializedName("vnf-type") + public String vnfType; + + @SerializedName("generic-vnf-name") + public String genericVnfName; + + @SerializedName("generic-vnf-type") + public String genericVnfType; + + + public SDNCVnfTopologyIdentifier() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyInformation.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyInformation.java new file mode 100644 index 000000000..5b3ae2685 --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/SDNCVnfTopologyInformation.java @@ -0,0 +1,49 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc; + +import java.io.Serializable; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; + +import com.google.gson.annotations.SerializedName; + +public class SDNCVnfTopologyInformation implements Serializable { + + /** + * + */ + private static final long serialVersionUID = -3283942659786236032L; + + @SerializedName("vnf-topology-identifier") + public SDNCVnfTopologyIdentifier vnfTopologyIdentifier; + + @SerializedName("vnf-assignments") + public SDNCVnfAssignments vnfAssignments; + + @SerializedName("vnf-parameters") + public List> vnfParameters = new LinkedList>(); + + public SDNCVnfTopologyInformation() { + } + +} diff --git a/sdnc/src/main/java/org/openecomp/policy/sdnc/util/Serialization.java b/sdnc/src/main/java/org/openecomp/policy/sdnc/util/Serialization.java new file mode 100644 index 000000000..4cc2fb586 --- /dev/null +++ b/sdnc/src/main/java/org/openecomp/policy/sdnc/util/Serialization.java @@ -0,0 +1,32 @@ +/*- + * ============LICENSE_START======================================================= + * sdnc + * ================================================================================ + * Copyright (C) 2017 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.openecomp.policy.sdnc.util; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; + +public final class Serialization { + + final static public Gson gsonPretty = new GsonBuilder().disableHtmlEscaping() + .setPrettyPrinting() + .create(); + +} -- cgit 1.2.3-korg