Merge "Inherit from oparent"
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.model.csar.toscametafile / src / main / java / org / eclipse / winery / model / csar / toscametafile / TOSCAMetaFileAttributes.java
1 /*******************************************************************************
2  * Copyright (c) 2013 Rene Trefft.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * and the Apache License 2.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *    Rene Trefft - initial API and implementation and/or initial documentation
11  *******************************************************************************/
12 package org.eclipse.winery.model.csar.toscametafile;
13
14 /**
15  * Predefined attribute names and values of a TOSCA meta file. <br />
16  * <br />
17  * Copyright 2013 IAAS University of Stuttgart <br />
18  * <br />
19  * 
20  * @author Rene Trefft - rene.trefft@developers.opentosca.org
21  * 
22  */
23 public class TOSCAMetaFileAttributes {
24         
25         // of block 0
26         final public static String TOSCA_META_VERSION = "TOSCA-Meta-Version";
27         final public static String TOSCA_META_VERSION_VALUE = "1.0";
28         final public static String CSAR_VERSION = "CSAR-Version";
29         final public static String CSAR_VERSION_VALUE = "1.0";
30         final public static String CREATED_BY = "Created-By";
31         final public static String ENTRY_DEFINITIONS = "Entry-Definitions";
32         final public static String TOPOLOGY = "Topology";
33         final public static String DESCRIPTION = "Description";
34         
35         // of blocks > 0 (file blocks)
36         final public static String NAME = "Name";
37         final public static String CONTENT_TYPE = "Content-Type";
38         
39 }