blob: 44094a1394a43da0cc3bfbc51147649d250b8cad [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">
Rob Daugherty38f72072018-03-14 02:07:32 -040027 <class name="OperationStatus" table="OPERATION_STATUS">
28 <meta attribute="class-description">
29 This class describes a operation status
30 </meta>
31 <composite-id>
32 <key-property name="serviceId" type="string" column="SERVICE_ID"/>
33 <key-property name="operationId" column="OPERATION_ID" type="string" length="256"/>
34 </composite-id>
Rob Daughertya63790f2018-04-04 15:56:32 -040035 <property name="serviceName" column="SERVICE_NAME" type="string" length="256"/>
Rob Daugherty38f72072018-03-14 02:07:32 -040036 <property name="operation" column="OPERATION_TYPE" type="string" length="256"/>
37 <property name="userId" column="USER_ID" type="string" length="256"/>
38 <property name="result" column="RESULT" type="string" length="256"/>
39 <property name="operationContent" column="OPERATION_CONTENT" type="string" length="256"/>
40 <property name="progress" column="PROGRESS" type="string" length="256"/>
41 <property name="reason" column="REASON" type="string" length="256"/>
42 <property name="operateAt" type="timestamp" generated="insert" insert="false" update="false" not-null="true">
43 <column name="OPERATE_AT" default="CURRENT_TIMESTAMP"/>
Jim Hahn20e60c82017-10-12 11:32:34 -040044 </property>
Rob Daugherty38f72072018-03-14 02:07:32 -040045 <property name="finishedAt" column="FINISHED_AT" type="timestamp" generated="always" insert="false" update="false"/>
46 </class>
c0014910793933fe2017-08-30 09:29:59 +080047</hibernate-mapping>