Package pt.webdetails.cdf.dd.model.meta

Examples of pt.webdetails.cdf.dd.model.meta.DataSourceComponentType


    CdfRunJsDashboardWriteContext context,
    DataSourceComponent dataSourceComp ) {

    String indent = context.getIndent();

    DataSourceComponentType compType = dataSourceComp.getMeta();

    String endPoint = buildJsStringValue( compType.tryGetAttributeValue( PropertyName.ENDPOINT, "" ) );
    addJsProperty( out, PropertyName.ENDPOINT, endPoint , indent, context.isFirstInList() );
    context.setIsFirstInList( false );

    String pluginId = buildJsStringValue( compType.tryGetAttributeValue( PropertyName.PLUGIN_ID, "" ) );
    addJsProperty( out, PropertyName.PLUGIN_ID, pluginId, indent, false );

    String stepName = dataSourceComp.tryGetPropertyValueByName( PropertyName.KETTLE_OUTPUT_STEP_NAME, "OUTPUT" );
    addJsProperty( out, PropertyName.KETTLE_OUTPUT_STEP_NAME, buildJsStringValue( stepName ), indent, false );
View Full Code Here

TOP

Related Classes of pt.webdetails.cdf.dd.model.meta.DataSourceComponentType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.