workspace-explorer/src/main/java/org/gcube/portlets/widgets/wsexplorer/shared/ExtensionItem.java

76 lines
1.7 KiB
Java

///**
// *
// */
//package org.gcube.portlets.widgets.wsexplorer.shared;
//
//import java.io.Serializable;
//import java.util.HashMap;
//import java.util.Map;
//
//
///**
// * The Class ExtensionItem.
// *
// * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
// * Apr 28, 2016
// */
//public class ExtensionItem extends Item implements Serializable{
//
// /**
// *
// */
// private static final long serialVersionUID = -4697549410044199051L;
//
// private Map<String, String> gcubeProperties;
//
// /**
// * Instantiates a new extension item.
// *
// * @param id the id
// * @param name the name
// * @param isFolder the is folder
// * @param gcubeProperties the gcube properties
// */
// public ExtensionItem(String id, String name, boolean isFolder, Map<String, String> gcubeProperties) {
// super(id,name,isFolder);
// this.gcubeProperties = new HashMap<String, String>(1);
// this.gcubeProperties = gcubeProperties;
// }
//
//
// /**
// * Gets the gcube properties.
// *
// * @return the gcubeProperties
// */
// public Map<String, String> getGcubeProperties() {
//
// return gcubeProperties;
// }
//
//
// /**
// * Sets the gcube properties.
// *
// * @param gcubeProperties the gcubeProperties to set
// */
// public void setGcubeProperties(Map<String, String> gcubeProperties) {
//
// this.gcubeProperties = gcubeProperties;
// }
//
//
// /* (non-Javadoc)
// * @see java.lang.Object#toString()
// */
// @Override
// public String toString() {
//
// StringBuilder builder = new StringBuilder();
// builder.append("ExtensionItem [gcubeProperties=");
// builder.append(gcubeProperties);
// builder.append("]");
// return builder.toString();
// }
//}