| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ============LICENSE_START======================================================= |
| ECOMP MSO |
| ================================================================================ |
| 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========================================================= |
| --> |
| |
| <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> |
| |
| <hibernate-mapping package="org.openecomp.mso.db.catalog.beans"> |
| <class name="HeatTemplate" table="HEAT_TEMPLATE"> |
| <meta attribute="class-description"> |
| This class describes a HEAT template |
| </meta> |
| |
| <id name="artifactUuid" type="string" column="ARTIFACT_UUID" length="200"> |
| <generator class="assigned" /> |
| </id> |
| |
| <property name="templateName" type="string" > |
| <column name="NAME" length="200" not-null="true"/> |
| </property> |
| <property name="version" type="string" > |
| <column name="VERSION" length="20" not-null="true"/> |
| </property> |
| |
| <property name="templateBody" type="text"> |
| <column name="BODY" not-null="true"/> |
| </property> |
| <property name="timeoutMinutes" column="TIMEOUT_MINUTES" type="int"/> |
| <property name="description" column="DESCRIPTION" type="string" length="1200"/> |
| <property name="created" type="timestamp" generated="insert" update="false" insert="false" not-null="true"> |
| <column name="CREATION_TIMESTAMP" default="CURRENT_TIMESTAMP"/> |
| </property> |
| <property name="artifactChecksum" type="string"> |
| <column name="ARTIFACT_CHECKSUM" length="200" default="'MANUAL RECORD'" not-null="true"/> |
| </property> |
| <set name="parameters" inverse="true" cascade="all"> |
| <key column="HEAT_TEMPLATE_ARTIFACT_UUID"/> |
| <one-to-many class="HeatTemplateParam"/> |
| </set> |
| |
| |
| </class> |
| |
| <class name="HeatTemplateParam" table="HEAT_TEMPLATE_PARAMS"> |
| <meta attribute="class-description"> |
| This class describes an input parameter to a heat template |
| </meta> |
| |
| <composite-id> |
| <key-property name="heatTemplateArtifactUuid" column="HEAT_TEMPLATE_ARTIFACT_UUID" type="string" /> |
| <key-property name="paramName" column="PARAM_NAME" type="string" /> |
| </composite-id> |
| |
| <properties name="uk_heat_params" unique="true"> |
| <property name="heatTemplateArtifactUuid" type="string" insert="false" update="false"> |
| <column name="HEAT_TEMPLATE_ARTIFACT_UUID" not-null="true"/> |
| </property> |
| <property name="paramName" type="string" insert="false" update="false"> |
| <column name="PARAM_NAME" length="100" not-null="true" /> |
| </property> |
| </properties> |
| <property name="required" type="boolean"> |
| <column name="IS_REQUIRED" not-null="true"/> |
| </property> |
| <property name="paramType" column="PARAM_TYPE" type="string" length="20"/> |
| <property name="paramAlias" column="PARAM_ALIAS" type="string" length="45"/> |
| </class> |
| |
| </hibernate-mapping> |