blob: 22d147402d59b4f503535dbacf405c6ec45acf62 [file] [log] [blame]
c0014910793933fe2017-08-30 09:29:59 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3/*-
4 * ============LICENSE_START=======================================================
5 * ONAP - SO
6 * ================================================================================
7 * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 */
22 -->
23
24<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
25
26<hibernate-mapping package="org.openecomp.mso.requestsdb">
27 <class name="ResourceOperationStatus" table="RESOURCE_OPERATION_STATUS">
28 <meta attribute="class-description">
29 This class describes a progress status
30 </meta>
c00149107a13d6f42017-10-18 11:48:21 +080031 <composite-id>
32 <key-property name="serviceId" type="string" column="SERVICE_ID"/>
33 <key-property name="operationId" type="string" column="OPERATION_ID" length="256"/>
34 <key-property name="resourceTemplateUUID" type="string" column="RESOURCE_TEMPLATE_UUID"/>
35 </composite-id>
c0014910793933fe2017-08-30 09:29:59 +080036 <property name="operType" column="OPER_TYPE" type="string" length="256"/>
37 <property name="resourceInstanceID" column="RESOURCE_INSTANCE_ID" type="string" length="256"/>
38 <property name="jobId" column="JOB_ID" type="string" length="256"/>
39 <property name="status" column="STATUS" type="string" length="256"/>
40 <property name="progress" column="PROGRESS" type="string" length="256"/>
41 <property name="errorCode" column="ERROR_CODE" type="string" length="256"/>
42 <property name="statusDescription" column="STATUS_DESCRIPOTION" type="string" length="256"/>
43 </class>
44</hibernate-mapping>