Add winery source code
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.repository / src / main / java / org / eclipse / winery / repository / resources / entitytypes / properties / winery / PropertyDefinitionKVListResource.java
1 /*******************************************************************************
2  * Copyright (c) 2012-2013 University of Stuttgart.
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  *     Oliver Kopp - initial API and implementation
11  *******************************************************************************/
12 package org.eclipse.winery.repository.resources.entitytypes.properties.winery;
13
14 import org.eclipse.winery.common.propertydefinitionkv.PropertyDefinitionKV;
15 import org.eclipse.winery.common.propertydefinitionkv.PropertyDefinitionKVList;
16 import org.eclipse.winery.repository.resources.EntityTypeResource;
17 import org.eclipse.winery.repository.resources._support.collections.withid.EntityWithIdCollectionResource;
18
19 import com.sun.jersey.api.view.Viewable;
20
21 /**
22  * Supports Winery's k/v properties introducing sub resources
23  * "PropertyDefinition", which defines <em>one</em> property
24  */
25 public class PropertyDefinitionKVListResource extends EntityWithIdCollectionResource<PropertyDefinitionKVResource, PropertyDefinitionKV> {
26         
27         public PropertyDefinitionKVListResource(EntityTypeResource res, PropertyDefinitionKVList list) {
28                 super(PropertyDefinitionKVResource.class, PropertyDefinitionKV.class, list, res);
29         }
30         
31         @Override
32         public String getId(PropertyDefinitionKV entity) {
33                 return entity.getKey();
34         }
35         
36         @Override
37         public Viewable getHTML() {
38                 throw new IllegalStateException("Not yet implemented.");
39         }
40         
41 }