blob: 8ee3dddef9c8151674cc562a0b3363e3117f8b2b [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<?xml version="1.0"?>
2<!--
3 ============LICENSE_START=======================================================
4 ECOMP MSO
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
xg353yb6b7bef2017-04-11 13:30:42 +020011
ChrisC025301d2017-01-31 11:40:03 +010012 http://www.apache.org/licenses/LICENSE-2.0
xg353yb6b7bef2017-04-11 13:30:42 +020013
ChrisC025301d2017-01-31 11:40:03 +010014 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
22<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
Jim Hahn20e60c82017-10-12 11:32:34 -040023 "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
ChrisC025301d2017-01-31 11:40:03 +010024<!-- Generated Jul 27, 2015 3:05:00 PM by Hibernate Tools 3.4.0.CR1 -->
25<hibernate-mapping>
26 <class name="org.openecomp.mso.requestsdb.InfraActiveRequests" table="INFRA_ACTIVE_REQUESTS">
27 <id name="requestId" type="string">
28 <column name="REQUEST_ID" length="45"/>
29 <generator class="assigned"/>
30 </id>
31 <property name="clientRequestId" type="string" unique="true">
32 <column name="CLIENT_REQUEST_ID" length="45" unique="true"/>
33 </property>
34 <property name="action" type="string">
35 <column name="ACTION" length="45" not-null="true"/>
36 </property>
37 <property name="requestStatus" type="string">
38 <column name="REQUEST_STATUS" length="20"/>
39 </property>
40 <property name="statusMessage" type="string">
41 <column name="STATUS_MESSAGE" length="2000"/>
42 </property>
43 <property name="progress" type="java.lang.Long">
44 <column name="PROGRESS" precision="11" scale="0"/>
45 </property>
46 <property name="startTime" type="timestamp">
47 <column name="START_TIME"/>
48 </property>
49 <property name="endTime" type="timestamp">
50 <column name="END_TIME"/>
51 </property>
52 <property name="source" type="string">
53 <column name="SOURCE" length="45"/>
54 </property>
55 <property name="vnfId" type="string">
56 <column name="VNF_ID" length="45"/>
57 </property>
58 <property name="vnfName" type="string">
59 <column name="VNF_NAME" length="80"/>
60 </property>
61 <property name="vnfType" type="string">
62 <column name="VNF_TYPE" length="200"/>
63 </property>
64 <property name="serviceType" type="string">
65 <column name="SERVICE_TYPE" length="45"/>
66 </property>
67 <property name="aicNodeClli" type="string">
68 <column name="AIC_NODE_CLLI" length="11"/>
69 </property>
70 <property name="tenantId" type="string">
71 <column name="TENANT_ID" length="45"/>
72 </property>
73 <property name="provStatus" type="string">
74 <column name="PROV_STATUS" length="20"/>
75 </property>
76 <property name="vnfParams" type="text">
77 <column name="VNF_PARAMS"/>
78 </property>
79 <property name="vnfOutputs" type="text">
80 <column name="VNF_OUTPUTS"/>
81 </property>
82 <property name="requestBody" type="text">
83 <column name="REQUEST_BODY"/>
84 </property>
85 <property name="responseBody" type="text">
86 <column name="RESPONSE_BODY"/>
87 </property>
88 <property name="lastModifiedBy" type="string">
89 <column name="LAST_MODIFIED_BY" length="50"/>
90 </property>
91 <property name="modifyTime" type="timestamp">
92 <column name="MODIFY_TIME"/>
93 </property>
94 <property name="requestType" type="string">
95 <column name="REQUEST_TYPE" length="20"/>
96 </property>
97 <property name="volumeGroupId" type="string">
98 <column name="VOLUME_GROUP_ID" length="45"/>
99 </property>
100 <property name="volumeGroupName" type="string">
101 <column name="VOLUME_GROUP_NAME" length="45"/>
102 </property>
103 <property name="vfModuleId" type="string">
104 <column name="VF_MODULE_ID" length="45"/>
105 </property>
106 <property name="vfModuleName" type="string">
107 <column name="VF_MODULE_NAME" length="200"/>
108 </property>
109 <property name="vfModuleModelName" type="string">
110 <column name="VF_MODULE_MODEL_NAME" length="200"/>
111 </property>
112 <property name="aaiServiceId" type="string">
113 <column name="AAI_SERVICE_ID" length="50"/>
114 </property>
115 <property name="aicCloudRegion" type="string">
116 <column name="AIC_CLOUD_REGION" length="11"/>
117 </property>
118 <property name="callBackUrl" type="string">
119 <column name="CALLBACK_URL" length="200"/>
120 </property>
121 <property name="correlator" type="string">
122 <column name="CORRELATOR" length="80"/>
123 </property>
124 <property name="serviceInstanceId" type="string">
125 <column name="SERVICE_INSTANCE_ID" length="45"/>
126 </property>
127 <property name="serviceInstanceName" type="string">
128 <column name="SERVICE_INSTANCE_NAME" length="80"/>
129 </property>
130 <property name="requestScope" type="string">
131 <column name="REQUEST_SCOPE" length="20"/>
132 </property>
133 <property name="requestAction" type="string">
134 <column name="REQUEST_ACTION" length="45" not-null="true"/>
135 </property>
136 <property name="networkId" type="string">
137 <column name="NETWORK_ID" length="45"/>
138 </property>
139 <property name="networkName" type="string">
140 <column name="NETWORK_NAME" length="80"/>
141 </property>
142 <property name="networkType" type="string">
143 <column name="NETWORK_TYPE" length="80"/>
144 </property>
xg353yb6b7bef2017-04-11 13:30:42 +0200145 <property name="requestorId" type="string">
146 <column name="REQUESTOR_ID" length="80"/>
147 </property>
ChrisC025301d2017-01-31 11:40:03 +0100148 </class>
149</hibernate-mapping>