ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 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 |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | 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//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> |
| 23 | |
| 24 | <hibernate-mapping package="org.openecomp.mso.db.catalog.beans"> |
| 25 | <class name="VnfRecipe" table="VNF_RECIPE"> |
| 26 | <meta attribute="class-description"> |
| 27 | This class describes a VNF Recipe |
| 28 | </meta> |
| 29 | |
| 30 | <id name="id" type="int" column="id"> |
| 31 | <generator class="native"/> |
| 32 | </id> |
| 33 | |
| 34 | <properties name="uk_vnf_recipe" unique="true"> |
| 35 | |
| 36 | <property name="vfModuleId" type="string"> |
| 37 | <column name="VF_MODULE_ID" not-null="false" length="100" /> |
| 38 | </property> |
| 39 | <property name="action" type="string"> |
| 40 | <column name="ACTION" not-null="true" length="20" /> |
| 41 | </property> |
| 42 | <property name="version" type="string"> |
| 43 | <column name="VERSION_STR" not-null="true" length="20" /> |
| 44 | </property> |
| 45 | |
| 46 | </properties> |
| 47 | |
| 48 | <property name="vnfType" type="string"> |
| 49 | <column name="VNF_TYPE" not-null="false" length="200" /> |
| 50 | </property> |
| 51 | |
| 52 | <property name="serviceType" type="string"> |
| 53 | <column name="SERVICE_TYPE" not-null="false" length="45" /> |
| 54 | </property> |
| 55 | |
| 56 | <property name="description" column="DESCRIPTION" type="string" length="1200"/> |
| 57 | |
| 58 | <property name="orchestrationUri" type="string"> |
| 59 | <column name="ORCHESTRATION_URI" not-null="true" length="256"/> |
| 60 | </property> |
| 61 | |
| 62 | <property name="vnfParamXSD" column="VNF_PARAM_XSD" type="string" length="2048"/> |
| 63 | <property name="recipeTimeout" column="RECIPE_TIMEOUT" type="int"/> |
| 64 | <property name="created" column="CREATION_TIMESTAMP" type="timestamp" generated="insert" update="false" insert="false" /> |
| 65 | </class> |
| 66 | </hibernate-mapping> |