ComponentMetadataService.java :  » Music » nemadiy » org » imirsel » nema » service » Java Open Source

Java Open Source » Music » nemadiy 
nemadiy » org » imirsel » nema » service » ComponentMetadataService.java
package org.imirsel.nema.service;

import java.sql.SQLException;
import java.util.Map;

import org.imirsel.meandre.client.TransmissionException;
import org.imirsel.nema.model.Component;
import org.imirsel.nema.model.Property;

/** Returns the component metadata
 * 
 * @author Amit Kumar
 *
 */
public interface ComponentMetadataService{
  
  /**Returns the component property data types
   * 
   * @param component
   * @return HashMap of component properties and data type
   * @throws TransmissionException 
   */
  public Map<String,Property> getComponentPropertyDataType(final Component component, String flowUri) throws TransmissionException, SQLException;
  
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.