Package pt.webdetails.cpf.packager.origin

Examples of pt.webdetails.cpf.packager.origin.OtherPluginStaticSystemOrigin


    //FIXME need extra method! and don't always assume system
    if (path.startsWith( "system" )) {
      path = StringUtils.removeStart( path, "system/" );
      path = path.substring( path.indexOf( "/" ) );
    }
    return new OtherPluginStaticSystemOrigin(plugin.getId(), path);
  }
View Full Code Here


    boolean isCPK = dataSourceType.equalsIgnoreCase( "cpk" );
    boolean isCDA = !isCPK;

    //TODO: oh so wrong
    PathOrigin origin = new OtherPluginStaticSystemOrigin( isCPK ? "cpk" : "cda", "" );
    builder.setOrigin( origin );

    // This specific Data Source has special treatment below
    boolean isKettleOverX = isCDA && "kettle over kettleTransFromFile".equalsIgnoreCase( label );
View Full Code Here

TOP

Related Classes of pt.webdetails.cpf.packager.origin.OtherPluginStaticSystemOrigin

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.