SYMBOL INDEX (6084 symbols across 520 files) FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/RuntimeTest.java type RuntimeTest (line 23) | public interface RuntimeTest { method accepts (line 24) | boolean accepts( Object objectUnderTest ); method getModule (line 26) | String getModule(); method getId (line 28) | String getId(); method getName (line 30) | String getName(); method isConfigInitTest (line 32) | boolean isConfigInitTest(); method getDependencies (line 34) | Set getDependencies(); method runTest (line 36) | RuntimeTestResultSummary runTest( Object objectUnderTest ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/RuntimeTestProgressCallback.java type RuntimeTestProgressCallback (line 19) | public interface RuntimeTestProgressCallback { method onProgress (line 20) | void onProgress( RuntimeTestStatus runtimeTestStatus ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/RuntimeTestStatus.java type RuntimeTestStatus (line 23) | public interface RuntimeTestStatus { method getModuleResults (line 24) | List getModuleResults(); method getTestsDone (line 26) | int getTestsDone(); method getTestsRunning (line 28) | int getTestsRunning(); method getTestsOutstanding (line 30) | int getTestsOutstanding(); method isDone (line 32) | boolean isDone(); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/RuntimeTester.java type RuntimeTester (line 19) | public interface RuntimeTester { method runtimeTest (line 20) | void runtimeTest( Object objectUnderTest, RuntimeTestProgressCallback ... method addRuntimeTest (line 21) | void addRuntimeTest( RuntimeTest test ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/RuntimeTestAction.java type RuntimeTestAction (line 21) | public interface RuntimeTestAction { method getName (line 22) | String getName(); method getDescription (line 23) | String getDescription(); method getSeverity (line 24) | RuntimeTestEntrySeverity getSeverity(); method getPayload (line 25) | RuntimeTestActionPayload getPayload(); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/RuntimeTestActionHandler.java type RuntimeTestActionHandler (line 19) | public interface RuntimeTestActionHandler { method canHandle (line 20) | boolean canHandle( RuntimeTestAction runtimeTestAction ); method handle (line 22) | void handle( RuntimeTestAction runtimeTestAction ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/RuntimeTestActionPayload.java type RuntimeTestActionPayload (line 19) | public interface RuntimeTestActionPayload { method getMessage (line 25) | String getMessage(); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/RuntimeTestActionService.java type RuntimeTestActionService (line 19) | public interface RuntimeTestActionService { method handle (line 20) | void handle( RuntimeTestAction runtimeTestAction ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/impl/HelpUrlPayload.java class HelpUrlPayload (line 23) | public class HelpUrlPayload implements RuntimeTestActionPayload { method HelpUrlPayload (line 30) | public HelpUrlPayload( MessageGetterFactory messageGetterFactory, Stri... method getMessage (line 37) | @Override public String getMessage() { method getTitle (line 41) | public String getTitle() { method getHeader (line 45) | public String getHeader() { method getUrl (line 49) | public String getUrl() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/impl/LoggingRuntimeTestActionHandlerImpl.java class LoggingRuntimeTestActionHandlerImpl (line 28) | public class LoggingRuntimeTestActionHandlerImpl implements RuntimeTestA... method getInstance (line 36) | public static LoggingRuntimeTestActionHandlerImpl getInstance() { method LoggingRuntimeTestActionHandlerImpl (line 40) | public LoggingRuntimeTestActionHandlerImpl( MessageGetterFactory messa... method LoggingRuntimeTestActionHandlerImpl (line 44) | public LoggingRuntimeTestActionHandlerImpl( MessageGetterFactory messa... method canHandle (line 49) | @Override public boolean canHandle( RuntimeTestAction runtimeTestActio... method getMessage (line 53) | private String getMessage( RuntimeTestAction runtimeTestAction ) { method handle (line 60) | @Override public void handle( RuntimeTestAction runtimeTestAction ) { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/impl/RuntimeTestActionImpl.java class RuntimeTestActionImpl (line 23) | public class RuntimeTestActionImpl implements RuntimeTestAction { method RuntimeTestActionImpl (line 29) | public RuntimeTestActionImpl( String name, String description, Runtime... method getName (line 37) | @Override public String getName() { method getDescription (line 41) | @Override public String getDescription() { method getSeverity (line 45) | @Override public RuntimeTestEntrySeverity getSeverity() { method getPayload (line 49) | @Override public RuntimeTestActionPayload getPayload() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/action/impl/RuntimeTestActionServiceImpl.java class RuntimeTestActionServiceImpl (line 27) | public class RuntimeTestActionServiceImpl implements RuntimeTestActionSe... method RuntimeTestActionServiceImpl (line 38) | public RuntimeTestActionServiceImpl( List ru... method getInstance (line 44) | public static RuntimeTestActionServiceImpl getInstance() { method handle (line 55) | @Override public void handle( RuntimeTestAction runtimeTestAction ) { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/i18n/MessageGetter.java type MessageGetter (line 19) | public interface MessageGetter { method getMessage (line 20) | String getMessage( String key, String... parameters ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/i18n/MessageGetterFactory.java type MessageGetterFactory (line 19) | public interface MessageGetterFactory { method create (line 20) | MessageGetter create( Class PKG ); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/i18n/impl/BaseMessagesMessageGetterFactoryImpl.java class BaseMessagesMessageGetterFactoryImpl (line 22) | public class BaseMessagesMessageGetterFactoryImpl implements MessageGett... method create (line 25) | @Override public MessageGetter create( Class PKG ) { method getInstance (line 29) | public static BaseMessagesMessageGetterFactoryImpl getInstance() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/i18n/impl/BaseMessagesMessageGetterImpl.java class BaseMessagesMessageGetterImpl (line 22) | public class BaseMessagesMessageGetterImpl implements MessageGetter { method BaseMessagesMessageGetterImpl (line 25) | public BaseMessagesMessageGetterImpl( Class PKG ) { method getMessage (line 29) | @Override public String getMessage( String key, String... parameters ) { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/impl/RuntimeTestComparator.java class RuntimeTestComparator (line 24) | public class RuntimeTestComparator implements Comparator { method RuntimeTestComparator (line 27) | public RuntimeTestComparator( Map orderedModules ) { method nullSafeCompare (line 31) | private Integer nullSafeCompare( Object first, Object second ) { method compareModuleNames (line 48) | private int compareModuleNames( String o1Module, String o2Module ) { method compare (line 62) | @Override public int compare( RuntimeTest o1, RuntimeTest o2 ) { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/impl/RuntimeTestRunner.java class RuntimeTestRunner (line 42) | public class RuntimeTestRunner { method RuntimeTestRunner (line 57) | @SuppressWarnings( "unchecked" ) method markSkipped (line 109) | private void markSkipped( RuntimeTest runtimeTest ) { method callbackState (line 135) | private void callbackState() { method callbackState (line 139) | private void callbackState( boolean done ) { method runTest (line 167) | private void runTest( RuntimeTest runtimeTest ) { method runTests (line 197) | public synchronized void runTests() { class Factory (line 254) | public static class Factory { method create (line 255) | public RuntimeTestRunner create( Collection r... FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/impl/RuntimeTestStatusImpl.java class RuntimeTestStatusImpl (line 24) | public class RuntimeTestStatusImpl implements RuntimeTestStatus { method RuntimeTestStatusImpl (line 31) | public RuntimeTestStatusImpl( List runtimeTe... method getModuleResults (line 40) | @Override public List getModuleResults() { method getTestsDone (line 44) | @Override public int getTestsDone() { method getTestsRunning (line 48) | @Override public int getTestsRunning() { method getTestsOutstanding (line 52) | @Override public int getTestsOutstanding() { method isDone (line 56) | @Override public boolean isDone() { method toString (line 62) | @Override public String toString() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/impl/RuntimeTesterImpl.java class RuntimeTesterImpl (line 30) | public class RuntimeTesterImpl implements RuntimeTester { method RuntimeTesterImpl (line 37) | public RuntimeTesterImpl( List runtimeTests, ExecutorServ... method getInstance (line 42) | public static RuntimeTester getInstance(){ method RuntimeTesterImpl (line 50) | public RuntimeTesterImpl( List runtimeTests, ExecutorServ... method runtimeTest (line 63) | @Override method addRuntimeTest (line 76) | public void addRuntimeTest( RuntimeTest test ) { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/module/RuntimeTestModuleResults.java type RuntimeTestModuleResults (line 26) | public interface RuntimeTestModuleResults { method getName (line 27) | String getName(); method getRuntimeTestResults (line 29) | List getRuntimeTestResults(); method getRunningTests (line 31) | Set getRunningTests(); method getOutstandingTests (line 33) | Set getOutstandingTests(); method getMaxSeverity (line 35) | RuntimeTestEntrySeverity getMaxSeverity(); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/module/impl/RuntimeTestModuleResultsImpl.java class RuntimeTestModuleResultsImpl (line 30) | public class RuntimeTestModuleResultsImpl implements RuntimeTestModuleRe... method RuntimeTestModuleResultsImpl (line 37) | public RuntimeTestModuleResultsImpl( String name, List getRuntimeTestResults() { method getMaxSeverity (line 54) | @Override public RuntimeTestEntrySeverity getMaxSeverity() { method getRunningTests (line 58) | @Override public Set getRunningTests() { method getOutstandingTests (line 62) | @Override public Set getOutstandingTests() { method toString (line 68) | @Override public String toString() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/network/ConnectivityTest.java type ConnectivityTest (line 22) | public interface ConnectivityTest { method runTest (line 23) | RuntimeTestResultEntry runTest(); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/network/ConnectivityTestFactory.java type ConnectivityTestFactory (line 22) | public interface ConnectivityTestFactory { method create (line 23) | ConnectivityTest create( MessageGetterFactory messageGetterFactory, St... method create (line 26) | ConnectivityTest create( MessageGetterFactory messageGetterFactory, St... method create (line 29) | ConnectivityTest create( MessageGetterFactory messageGetterFactory, St... method create (line 32) | ConnectivityTest create( MessageGetterFactory messageGetterFactory, St... FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/network/impl/ConnectivityTestFactoryImpl.java class ConnectivityTestFactoryImpl (line 26) | public class ConnectivityTestFactoryImpl implements ConnectivityTestFact... method create (line 27) | @Override public ConnectivityTest create( MessageGetterFactory message... method create (line 32) | @Override public ConnectivityTest create( MessageGetterFactory message... method create (line 37) | @Override method create (line 44) | @Override FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/network/impl/ConnectivityTestImpl.java class ConnectivityTestImpl (line 37) | public class ConnectivityTestImpl implements ConnectivityTest { method ConnectivityTestImpl (line 65) | public ConnectivityTestImpl( MessageGetterFactory messageGetterFactory... method ConnectivityTestImpl (line 70) | public ConnectivityTestImpl( MessageGetterFactory messageGetterFactory... method ConnectivityTestImpl (line 77) | public ConnectivityTestImpl( MessageGetterFactory messageGetterFactory... method runTest (line 97) | @Override public RuntimeTestResultEntry runTest() { method isSocks5ProxyServer (line 182) | private boolean isSocks5ProxyServer() { class SocketFactory (line 192) | public static class SocketFactory { method SocketFactory (line 195) | public SocketFactory() { method SocketFactory (line 199) | public SocketFactory( String proxyHost, int proxyPort ) { method create (line 203) | public Socket create( String hostname, int port ) throws IOException { class InetAddressFactory (line 218) | public static class InetAddressFactory { method create (line 219) | public InetAddress create( String hostname ) throws UnknownHostExcep... FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/network/impl/GatewayConnectivityTestImpl.java class GatewayConnectivityTestImpl (line 48) | public class GatewayConnectivityTestImpl extends ConnectivityTestImpl { method GatewayConnectivityTestImpl (line 94) | public GatewayConnectivityTestImpl( MessageGetterFactory messageGetter... method runTest (line 110) | @Override method initContextWithTrustAll (line 199) | void initContextWithTrustAll( SSLContext ctx ) throws KeyManagementExc... method getTlsContext (line 218) | SSLContext getTlsContext() throws NoSuchAlgorithmException { method getHttpClient (line 222) | @VisibleForTesting method getHttpClient (line 227) | @VisibleForTesting FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/result/RuntimeTestEntrySeverity.java type RuntimeTestEntrySeverity (line 21) | public enum RuntimeTestEntrySeverity { method maxSeverityResult (line 24) | public static RuntimeTestEntrySeverity maxSeverityResult( Collection getRuntimeTestResultEntries(); FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/result/org/pentaho/runtime/test/result/impl/RuntimeTestResultSummaryImpl.java class RuntimeTestResultSummaryImpl (line 26) | public class RuntimeTestResultSummaryImpl implements RuntimeTestResultSu... method RuntimeTestResultSummaryImpl (line 30) | public RuntimeTestResultSummaryImpl() { method RuntimeTestResultSummaryImpl (line 34) | @SuppressWarnings( "unchecked" ) method RuntimeTestResultSummaryImpl (line 39) | public RuntimeTestResultSummaryImpl( RuntimeTestResultEntry rollupTest... method getOverallStatusEntry (line 45) | @Override public RuntimeTestResultEntry getOverallStatusEntry() { method getRuntimeTestResultEntries (line 49) | @Override public List getRuntimeTestResultEntr... method toString (line 55) | @Override public String toString() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/test/impl/BaseRuntimeTest.java class BaseRuntimeTest (line 25) | public abstract class BaseRuntimeTest implements RuntimeTest { method BaseRuntimeTest (line 33) | public BaseRuntimeTest( Class classUnderTest, String module, String... method BaseRuntimeTest (line 37) | public BaseRuntimeTest( Class classUnderTest, String module, String... method accepts (line 47) | @Override public boolean accepts( Object objectUnderTest ) { method getModule (line 51) | @Override public String getModule() { method getId (line 55) | @Override public String getId() { method getName (line 59) | @Override public String getName() { method getDependencies (line 63) | @Override public Set getDependencies() { method isConfigInitTest (line 67) | @Override public boolean isConfigInitTest() { method toString (line 73) | @Override public String toString() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/test/impl/RuntimeTestDelegateWithMoreDependencies.java class RuntimeTestDelegateWithMoreDependencies (line 26) | public class RuntimeTestDelegateWithMoreDependencies implements RuntimeT... method RuntimeTestDelegateWithMoreDependencies (line 30) | public RuntimeTestDelegateWithMoreDependencies( RuntimeTest delegate, ... method accepts (line 35) | @Override public boolean accepts( Object objectUnderTest ) { method getModule (line 39) | @Override public String getModule() { method getId (line 43) | @Override public String getId() { method getName (line 47) | @Override public String getName() { method isConfigInitTest (line 51) | @Override public boolean isConfigInitTest() { method getDependencies (line 55) | @Override public Set getDependencies() { method runTest (line 61) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... method toString (line 67) | @Override public String toString() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/test/impl/RuntimeTestResultEntryImpl.java class RuntimeTestResultEntryImpl (line 23) | public class RuntimeTestResultEntryImpl implements RuntimeTestResultEntry { method RuntimeTestResultEntryImpl (line 30) | public RuntimeTestResultEntryImpl( RuntimeTestEntrySeverity severity, ... method RuntimeTestResultEntryImpl (line 34) | public RuntimeTestResultEntryImpl( RuntimeTestEntrySeverity severity, ... method RuntimeTestResultEntryImpl (line 39) | public RuntimeTestResultEntryImpl( RuntimeTestEntrySeverity severity, ... method RuntimeTestResultEntryImpl (line 44) | public RuntimeTestResultEntryImpl( RuntimeTestEntrySeverity severity, ... method getSeverity (line 53) | @Override public RuntimeTestEntrySeverity getSeverity() { method getDescription (line 57) | @Override public String getDescription() { method getMessage (line 61) | @Override public String getMessage() { method getException (line 65) | @Override public Throwable getException() { method getAction (line 69) | @Override public RuntimeTestAction getAction() { method toString (line 75) | @Override public String toString() { FILE: api/runtimeTest/src/main/java/org/pentaho/runtime/test/test/impl/RuntimeTestResultImpl.java class RuntimeTestResultImpl (line 27) | public class RuntimeTestResultImpl implements RuntimeTestResult { method RuntimeTestResultImpl (line 33) | public RuntimeTestResultImpl( RuntimeTest runtimeTest, boolean isDone, method getRuntimeTest (line 43) | @Override public RuntimeTest getRuntimeTest() { method isDone (line 47) | @Override public boolean isDone() { method getTimeTaken (line 51) | @Override public long getTimeTaken() { method getOverallStatusEntry (line 55) | @Override public RuntimeTestResultEntry getOverallStatusEntry() { method getRuntimeTestResultEntries (line 59) | @Override public List getRuntimeTestResultEntr... method toString (line 66) | @Override public String toString() { FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/RuntimeTestEntryUtil.java class RuntimeTestEntryUtil (line 29) | public class RuntimeTestEntryUtil { method expectOneEntry (line 30) | public static RuntimeTestResultEntry expectOneEntry( List PKG ) { method getMessage (line 32) | @Override public String getMessage( String key, String... parameters ) { FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/TestMessageGetterFactory.java class TestMessageGetterFactory (line 23) | public class TestMessageGetterFactory implements MessageGetterFactory { method create (line 24) | @Override public MessageGetter create( Class PKG ) { FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/action/impl/HelpUrlPayloadTest.java class HelpUrlPayloadTest (line 26) | public class HelpUrlPayloadTest { method setup (line 33) | @Before method testGetTitle (line 43) | @Test method testGetHeader (line 48) | @Test method testGetUrl (line 53) | @Test method testGetMessage (line 58) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/action/impl/LoggingRuntimeTestActionHandlerImplTest.java class LoggingRuntimeTestActionHandlerImplTest (line 33) | public class LoggingRuntimeTestActionHandlerImplTest { method setup (line 42) | @Before method testCanHandle (line 54) | @Test method handleSetup (line 61) | private void handleSetup( RuntimeTestEntrySeverity severity ) { method testHandleNullSeverity (line 69) | @Test method testHandleDebugSeverity (line 77) | @Test method testHandleInfoSeverity (line 85) | @Test method testHandleWarningSeverity (line 93) | @Test method testHandleSkippedSeverity (line 101) | @Test method testHandleErrorSeverity (line 109) | @Test method testHandleFatalSeverity (line 117) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/action/impl/RuntimeTestActionImplTest.java class RuntimeTestActionImplTest (line 27) | public class RuntimeTestActionImplTest { method setup (line 34) | @Before method testGetName (line 43) | @Test method testGetDescription (line 48) | @Test method testGetSeverity (line 53) | @Test method testGetPayload (line 58) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/action/impl/RuntimeTestActionServiceImplTest.java class RuntimeTestActionServiceImplTest (line 32) | public class RuntimeTestActionServiceImplTest { method setup (line 38) | @Before method testHandleDefault (line 47) | @Test method testHandleNormal (line 56) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/i18n/impl/BaseMessagesMessageGetterFactoryImplTest.java class BaseMessagesMessageGetterFactoryImplTest (line 24) | public class BaseMessagesMessageGetterFactoryImplTest { method setup (line 27) | @Before method testCreate (line 32) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/i18n/impl/BaseMessagesMessageGetterImplTest.java class BaseMessagesMessageGetterImplTest (line 24) | public class BaseMessagesMessageGetterImplTest { method setup (line 27) | @Before method testGetMesssage (line 32) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/impl/RuntimeTestComparatorTest.java class RuntimeTestComparatorTest (line 31) | public class RuntimeTestComparatorTest { method setup (line 41) | @Before method testModuleSameOrderedIdsSame (line 53) | @Test method testModuleSameOrderedIdsDifferent1 (line 62) | @Test method testModuleSameOrderedIdsDifferent2 (line 71) | @Test method testModuleSameUnrderedIdsSame (line 80) | @Test method testModuleDifferentOrdered (line 89) | @Test method testModuleDifferentFirstOrdered (line 98) | @Test method testModuleDifferentSecondOrdered (line 108) | @Test method testModuleDifferentNotOrdered (line 118) | @Test FILE: api/runtimeTest/src/test/java/org/pentaho/runtime/test/impl/RuntimeTestRunnerTest.java class RuntimeTestRunnerTest (line 48) | public class RuntimeTestRunnerTest { method dependenciesToIds (line 61) | private static Set dependenciesToIds( Set tes... method setup (line 69) | @Before method tearDown (line 114) | @After method testSingleTestNoDependencies (line 119) | @Test method testSingleTestWithDependencies (line 124) | @Test method testModuleA (line 129) | @Test method testModuleAAndB (line 134) | @Test method testModuleAthruC (line 140) | @Test method testModuleAthruCUnsat (line 147) | @Test method testScenario (line 155) | private void testScenario( List runtimeTests ) { class TestRuntimeTest (line 230) | public class TestRuntimeTest extends BaseRuntimeTest { method TestRuntimeTest (line 238) | public TestRuntimeTest( String module, String id, String name, Set values, OutputColle... FILE: assemblies/samples/src/main/resources/jobs/hadoop/pentaho-mapreduce2-sample-src/src/org/pentaho/hadoop/sample/wordcount/WordCount2.java class WordCount2 (line 36) | public class WordCount2 extends Configured implements Tool { method run (line 37) | public int run( String[] strings ) throws Exception { class Map (line 58) | public static class Map method map (line 63) | public void map( LongWritable key, Text value, Context context ) class Reduce (line 74) | public static class Reduce extends Reducer values, Context ... method main (line 85) | public static void main( String[] args ) throws Exception { FILE: authentication-mapper/api/src/main/java/org/pentaho/authentication/mapper/api/AuthenticationMappingManager.java type AuthenticationMappingManager (line 18) | public interface AuthenticationMappingManager { method getMapping (line 21) | OutputType getMapping( Class inputT... FILE: authentication-mapper/api/src/main/java/org/pentaho/authentication/mapper/api/AuthenticationMappingService.java type AuthenticationMappingService (line 20) | public interface AuthenticationMappingService { method getId (line 21) | String getId(); method getInputType (line 23) | Class getInputType(); method getOutputType (line 25) | Class getOutputType(); method accepts (line 27) | boolean accepts( Object input ); method getMapping (line 29) | OutputType getMapping( InputType input, Map config ) throws... FILE: authentication-mapper/api/src/main/java/org/pentaho/authentication/mapper/api/MappingException.java class MappingException (line 18) | public class MappingException extends Exception { method MappingException (line 19) | public MappingException() { method MappingException (line 22) | public MappingException( String message ) { method MappingException (line 26) | public MappingException( String message, Throwable cause ) { method MappingException (line 30) | public MappingException( Throwable cause ) { type Function (line 34) | @FunctionalInterface method apply (line 36) | R apply( T t ) throws MappingException; type Supplier (line 39) | @FunctionalInterface method get (line 41) | R get() throws MappingException; FILE: authentication-mapper/impl/src/main/java/org/pentaho/authentication/mapper/impl/AuthenticationMappingManagerImpl.java class AuthenticationMappingManagerImpl (line 33) | public class AuthenticationMappingManagerImpl implements AuthenticationM... method AuthenticationMappingManagerImpl (line 39) | public AuthenticationMappingManagerImpl() throws IOException { method AuthenticationMappingManagerImpl (line 42) | public AuthenticationMappingManagerImpl( AuthenticationMappingService ... method getMapping (line 46) | @Override method onMappingServiceAdded (line 62) | public void onMappingServiceAdded( AuthenticationMappingService servic... method onMappingServiceRemoved (line 73) | public void onMappingServiceRemoved( AuthenticationMappingService serv... class TypePair (line 84) | private static class TypePair { method TypePair (line 87) | TypePair( AuthenticationMappingService service ) { method TypePair (line 91) | TypePair( Class input, Class output ) { method equals (line 96) | @Override public boolean equals( Object o ) { method hashCode (line 107) | @Override public int hashCode() { method toString (line 111) | @Override public String toString() { class RankedAuthService (line 116) | private static class RankedAuthService implements Comparable { method TestService (line 93) | TestService( String id ) { method getId (line 97) | @Override public String getId() { method getInputType (line 101) | @Override public Class getInputType() { method getOutputType (line 105) | @Override public Class getOutputType() { method accepts (line 109) | @Override public boolean accepts( Object input ) { method getMapping (line 113) | @Override public Map getMapping( String input, Map config... FILE: impl/cluster/src/main/java/org/pentaho/big/data/impl/cluster/NamedClusterImpl.java class NamedClusterImpl (line 68) | @MetaStoreElementType( name = "NamedCluster", description = "A NamedClus... method NamedClusterImpl (line 145) | public NamedClusterImpl() { method NamedClusterImpl (line 150) | public NamedClusterImpl( NamedCluster namedCluster ) { method setName (line 155) | public void setName( String name ) { method getName (line 159) | public String getName() { method getShimIdentifier (line 163) | public String getShimIdentifier() { method setShimIdentifier (line 167) | public void setShimIdentifier( String shimIdentifier ) { method getStorageScheme (line 171) | public String getStorageScheme() { method setStorageScheme (line 182) | public void setStorageScheme( String storageScheme ) { method copyVariablesFrom (line 186) | public void copyVariablesFrom( VariableSpace space ) { method environmentSubstitute (line 190) | public String environmentSubstitute( String aString ) { method environmentSubstitute (line 194) | public String[] environmentSubstitute( String[] aString ) { method fieldSubstitute (line 198) | public String fieldSubstitute( String aString, RowMetaInterface rowMet... method getParentVariableSpace (line 203) | public VariableSpace getParentVariableSpace() { method setParentVariableSpace (line 207) | public void setParentVariableSpace( VariableSpace parent ) { method getVariable (line 211) | public String getVariable( String variableName, String defaultValue ) { method getVariable (line 215) | public String getVariable( String variableName ) { method getBooleanValueOfVariable (line 219) | public boolean getBooleanValueOfVariable( String variableName, boolean... method initializeVariablesFrom (line 229) | public void initializeVariablesFrom( VariableSpace parent ) { method listVariables (line 233) | public String[] listVariables() { method setVariable (line 237) | public void setVariable( String variableName, String variableValue ) { method shareVariablesWith (line 241) | public void shareVariablesWith( VariableSpace space ) { method injectVariables (line 245) | public void injectVariables( Map prop ) { method replaceMeta (line 249) | public void replaceMeta( NamedCluster nc ) { method clone (line 274) | public NamedClusterImpl clone() { method processURLsubstitution (line 278) | @Override method processURLsubstitution (line 299) | private String processURLsubstitution( String incomingURL, String hdfs... method isHdfsHostEmpty (line 351) | @VisibleForTesting boolean isHdfsHostEmpty( VariableSpace variableSpac... method getHostNameParsed (line 356) | public String getHostNameParsed( VariableSpace variableSpace ) { method generateURL (line 372) | @VisibleForTesting String generateURL( String scheme, IMetaStore metas... method equals (line 439) | @Override method getHdfsHost (line 461) | public String getHdfsHost() { method setHdfsHost (line 465) | public void setHdfsHost( String hdfsHost ) { method getHdfsPort (line 469) | public String getHdfsPort() { method setHdfsPort (line 473) | public void setHdfsPort( String hdfsPort ) { method getHdfsUsername (line 477) | public String getHdfsUsername() { method setHdfsUsername (line 481) | public void setHdfsUsername( String hdfsUsername ) { method getHdfsPassword (line 485) | public String getHdfsPassword() { method setHdfsPassword (line 489) | public void setHdfsPassword( String hdfsPassword ) { method getJobTrackerHost (line 493) | public String getJobTrackerHost() { method setJobTrackerHost (line 497) | public void setJobTrackerHost( String jobTrackerHost ) { method getJobTrackerPort (line 501) | public String getJobTrackerPort() { method setJobTrackerPort (line 505) | public void setJobTrackerPort( String jobTrackerPort ) { method getZooKeeperHost (line 509) | public String getZooKeeperHost() { method setZooKeeperHost (line 513) | public void setZooKeeperHost( String zooKeeperHost ) { method getZooKeeperPort (line 517) | public String getZooKeeperPort() { method setZooKeeperPort (line 521) | public void setZooKeeperPort( String zooKeeperPort ) { method getOozieUrl (line 525) | public String getOozieUrl() { method setOozieUrl (line 529) | public void setOozieUrl( String oozieUrl ) { method getLastModifiedDate (line 533) | public long getLastModifiedDate() { method setLastModifiedDate (line 537) | public void setLastModifiedDate( long lastModifiedDate ) { method setMapr (line 541) | public void setMapr( boolean mapr ) { method isMapr (line 547) | @Deprecated method toString (line 556) | @Override method toXmlForEmbed (line 561) | public String toXmlForEmbed( String rootTag ) { method createSiteFileChildren (line 621) | private Element createSiteFileChildren( Document doc, ArrayList name... method unmarshallSiteFields (line 675) | private NamedClusterSiteFileImpl unmarshallSiteFields( List site... method createChildElement (line 690) | private Node createChildElement( Document doc, String elementName, Str... method createTextNode (line 701) | private Node createTextNode( Document doc, String tagName, String valu... method getGatewayUrl (line 707) | @Override method setGatewayUrl (line 712) | @Override method getGatewayUsername (line 717) | @Override method setGatewayUsername (line 722) | @Override method getGatewayPassword (line 727) | @Override method setGatewayPassword (line 732) | @Override method isUseGateway (line 737) | @Override method setUseGateway (line 742) | @Override method getKafkaBootstrapServers (line 747) | @Override public String getKafkaBootstrapServers() { method setKafkaBootstrapServers (line 751) | @Override public void setKafkaBootstrapServers( String kafkaBootstrapS... method nonOsgiFromXmlForEmbed (line 755) | @Override public NamedClusterOsgi nonOsgiFromXmlForEmbed( Node node ) { method decodePassword (line 759) | public String decodePassword( String password ) { method encodePassword (line 771) | public String encodePassword( String password ) { method getSiteFiles (line 775) | @Override method setSiteFiles (line 780) | @Override method addSiteFile (line 785) | @Override method addSiteFile (line 790) | @Override method getSiteFileInputStream (line 795) | @Override FILE: impl/cluster/src/main/java/org/pentaho/big/data/impl/cluster/NamedClusterManager.java class NamedClusterManager (line 58) | public class NamedClusterManager implements NamedClusterService { method getInstance (line 74) | public static NamedClusterManager getInstance() { method getMetaStoreFactory (line 86) | @VisibleForTesting method putMetaStoreFactory (line 103) | @VisibleForTesting method close (line 108) | @Override public void close( IMetaStore metastore ) { method getClusterTemplate (line 112) | @Override method setClusterTemplate (line 130) | @Override method create (line 135) | @Override method read (line 140) | @Override method update (line 164) | @Override method delete (line 176) | @Override method list (line 181) | @Override method list (line 208) | @Override method listNames (line 215) | @Override method contains (line 220) | @Override method getNamedClusterByName (line 235) | @Override method searchMetastoreByName (line 254) | private NamedCluster searchMetastoreByName( String namedCluster, IMeta... method getProperties (line 268) | public Map getProperties() { method getNamedClusterByHost (line 272) | @Override method searchMetastoreByHost (line 290) | private NamedCluster searchMetastoreByHost( String hostName, IMetaStor... method updateNamedClusterTemplate (line 305) | @Override method getSlaveServerMetastoreDir (line 319) | private String getSlaveServerMetastoreDir() throws IOException { method useSlaveMetastorePathFromProperties (line 362) | private boolean useSlaveMetastorePathFromProperties( String slaveMetaS... method getSlaveServerMetastore (line 375) | @VisibleForTesting method loadProperties (line 399) | private Properties loadProperties( PluginInterface plugin, String rela... method loadSiteFilesIfNecessary (line 421) | private void loadSiteFilesIfNecessary( NamedCluster namedCluster, IMet... method unconditionalAddOfSiteFiles (line 437) | private void unconditionalAddOfSiteFiles( NamedCluster namedCluster, I... method semiIntelligentSiteFileUpdate (line 456) | private void semiIntelligentSiteFileUpdate( NamedCluster namedCluster,... method autoUpdateMetastoreWithSiteFiles (line 492) | private void autoUpdateMetastoreWithSiteFiles( NamedCluster namedClust... method getNamedClusterConfigsRootDir (line 522) | private String getNamedClusterConfigsRootDir( IMetaStore metaStore ) { FILE: impl/cluster/src/test/java/org/pentaho/big/data/impl/cluster/NamedClusterImplTest.java class NamedClusterImplTest (line 75) | @RunWith( MockitoJUnitRunner.class ) method setup (line 102) | @Before method cleanupMocks (line 154) | @After method testBean (line 161) | @Test method testClone (line 168) | @Test method testCopyVariablesFrom (line 188) | @Test method testEnvironmentSubstitute (line 195) | @Test method testArrayEnvironmentSubstitute (line 203) | @Test method testFieldSubstitute (line 211) | @Test method testGetVariableDefault (line 221) | @Test method testGetVariable (line 230) | @Test method testGetBooleanValueOfVariable (line 238) | @Test method testListVariables (line 254) | @Test method testSetVariable (line 261) | @Test method testInjectVariables (line 269) | @Test method testComparator (line 277) | @Test method testToString (line 288) | @Test method testGenerateURLNullParameters (line 296) | @Ignore @Test method testGenerateURLHDFS (line 312) | @Ignore @Test method testGenerateURLHDFSPort (line 328) | @Test method testCheckHdfsNameEmpty (line 341) | @Test method testGetHdfsNameParsed (line 348) | @Test method testGetHdfsNameParsedFromVariable (line 355) | @Test method testGetHdfsNameParsedFromVariableNoVariableInSpace (line 363) | @Test method testCheckHdfsNameNotEmpty (line 370) | @Test method testCheckHdfsNameNull (line 377) | @Test method testCheckHdfsNameVariableNull (line 383) | @Test method testCheckHdfsNameVariableNotNull (line 389) | @Test method testProcessURLHostEmpty (line 396) | @Test method testProcessURLhdfsFullSubstitution (line 404) | @Ignore @Test method testProcessURLSubstitution_Gateway (line 416) | @Test method testProcessURLWASBFullSubstitution (line 425) | @Ignore @Test method testProcessURLHostVariableNull (line 439) | @Test method testProcessURLHostVariableNotNull (line 447) | @Test method testProcessCompleteClusterVariableReplacement (line 467) | @Test method testProcessURLsubstitutionMaprFS_startsWithMaprfs (line 486) | @Test method testProcessURLsubstitutionMaprFS_startsWithNoMaprfs (line 493) | @Test method testProcessURLsubstitutionNC (line 500) | @Ignore @Test method testProcessURLSubstitutionNC_variable (line 511) | @Ignore @Test method testGenerateURLHDFSNoPort (line 523) | @Test method testGenerateURLHDFSVariableSpace (line 534) | @Ignore @Test method testGenerateURLHDFSVariableSpace_noVariable (line 566) | @Test method testXMLEmbedding (line 581) | @Test method testLegacyXMLEmbedding (line 591) | @Test method createNodeFromNamedCluster (line 610) | private Element createNodeFromNamedCluster() throws Exception { method assertNamedClusterEquality (line 619) | private void assertNamedClusterEquality( NamedCluster nc ) { method buildSchemeAnswer (line 645) | private Answer buildSchemeAnswer( String prefix, String buildPath ) { method buildUrlEncodeAnswer (line 653) | private Answer buildUrlEncodeAnswer( String value ) { method buildExtractSchemeMocks (line 661) | private void buildExtractSchemeMocks( String prefix, String fullPath, ... method buildAppendEncodedUserPassMocks (line 668) | private void buildAppendEncodedUserPassMocks( String username, String ... method getSiteFileContents (line 675) | private String getSiteFileContents( NamedCluster nc, String siteFileNa... FILE: impl/cluster/src/test/java/org/pentaho/big/data/impl/cluster/NamedClusterManagerTest.java class NamedClusterManagerTest (line 59) | public class NamedClusterManagerTest { method setup (line 66) | @Before method deleteDirectory (line 91) | private boolean deleteDirectory( File directoryToBeDeleted ) { method testGetClusterTemplate (line 101) | @Test method testCreate (line 113) | @Test method testRead (line 122) | @Test method testUpdate (line 130) | @Test method testDeleteElement (line 143) | @Test method testList (line 150) | @Test method testListNames (line 159) | @Test method testListNames_emptymetaStoreFactory (line 166) | @Test method testContains (line 174) | @Test method testContainsSlaveServer (line 184) | @Test method testGetNamedClusterByName (line 194) | @Test method testGetNamedClusterByHost (line 209) | @Test method testGetMetaStoreFactoryEmbeddedMetaStoreSuccess (line 226) | @Test method testGetMetaStoreFactoryNonEmbeddedMetaStore (line 247) | @Test method testUpdateNamedClusterTemplate (line 269) | @Test FILE: impl/cluster/src/test/java/org/pentaho/big/data/impl/cluster/NamedClusterMetastoreIT.java class NamedClusterMetastoreIT (line 43) | public class NamedClusterMetastoreIT { method setup (line 70) | @Before method testWriteAndRead (line 124) | @Test method testAutoEmbedSiteFiles (line 132) | @Test method testAutoEmbedWhenUpdateMetastoreAndRecoveryFails (line 143) | @Test method testAutoEmbedWhenUpdateMetastoreFails (line 158) | @Test method commonAutoEmbedSetupLogic (line 186) | private void commonAutoEmbedSetupLogic() throws IOException { method getSiteFileContents (line 197) | private String getSiteFileContents( NamedCluster nc, String siteFileNa... method testCorruptedFileWithList (line 203) | @Test FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/ClusterRuntimeTestEntry.java class ClusterRuntimeTestEntry (line 30) | public class ClusterRuntimeTestEntry extends RuntimeTestResultEntryImpl { method ClusterRuntimeTestEntry (line 41) | public ClusterRuntimeTestEntry( MessageGetterFactory messageGetterFact... method ClusterRuntimeTestEntry (line 46) | public ClusterRuntimeTestEntry( RuntimeTestEntrySeverity severity, Str... method ClusterRuntimeTestEntry (line 51) | public ClusterRuntimeTestEntry( MessageGetterFactory messageGetterFact... method ClusterRuntimeTestEntry (line 58) | public ClusterRuntimeTestEntry( MessageGetterFactory messageGetterFact... method ClusterRuntimeTestEntry (line 63) | public ClusterRuntimeTestEntry( RuntimeTestEntrySeverity severity, Str... method getDefaultAction (line 68) | private static RuntimeTestAction getDefaultAction( MessageGetterFactor... method createDefaultAction (line 78) | private static RuntimeTestAction createDefaultAction( MessageGetterFac... type DocAnchor (line 99) | public enum DocAnchor { method DocAnchor (line 110) | DocAnchor( String anchorTextKey ) { method getAnchorTextKey (line 114) | public String getAnchorTextKey() { FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/Constants.java class Constants (line 19) | public class Constants { FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/GatewayListHomeDirectoryTest.java class GatewayListHomeDirectoryTest (line 28) | public class GatewayListHomeDirectoryTest extends ListHomeDirectoryTest { method GatewayListHomeDirectoryTest (line 34) | public GatewayListHomeDirectoryTest( MessageGetterFactory messageGette... method runTest (line 41) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/GatewayListRootDirectoryTest.java class GatewayListRootDirectoryTest (line 28) | public class GatewayListRootDirectoryTest extends ListRootDirectoryTest { method GatewayListRootDirectoryTest (line 34) | public GatewayListRootDirectoryTest( MessageGetterFactory messageGette... method runTest (line 41) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/GatewayPingFileSystemEntryPoint.java class GatewayPingFileSystemEntryPoint (line 27) | public class GatewayPingFileSystemEntryPoint extends PingFileSystemEntry... method GatewayPingFileSystemEntryPoint (line 31) | public GatewayPingFileSystemEntryPoint( MessageGetterFactory messageGe... method runTest (line 36) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/GatewayWriteToAndDeleteFromUsersHomeFolderTest.java class GatewayWriteToAndDeleteFromUsersHomeFolderTest (line 55) | public class GatewayWriteToAndDeleteFromUsersHomeFolderTest extends Writ... method GatewayWriteToAndDeleteFromUsersHomeFolderTest (line 68) | public GatewayWriteToAndDeleteFromUsersHomeFolderTest( MessageGetterFa... method runTest (line 73) | @Override method doesFileExists (line 207) | private boolean doesFileExists( String url, String user, String passwo... method createFile (line 217) | private String createFile( String url, String user, String password, i... method appendContentToFile (line 230) | private boolean appendContentToFile( String location, String user, Str... method deleteFile (line 239) | private boolean deleteFile( String url, String user, String password, ... method runServiceTest (line 249) | private ServerResponse runServiceTest( RequestType requestType, URI ur... method getHttpRequestMethod (line 285) | private HttpUriRequest getHttpRequestMethod( RequestType requestType, ... method initContextWithTrustAll (line 301) | void initContextWithTrustAll( SSLContext ctx ) throws KeyManagementExc... method getTlsContext (line 318) | SSLContext getTlsContext() throws NoSuchAlgorithmException { method getHttpClient (line 322) | CloseableHttpClient getHttpClient( String user, String password ) { type RequestType (line 328) | enum RequestType { class ServerResponse (line 332) | static class ServerResponse { method ServerResponse (line 336) | ServerResponse( String locationHeader, int statusCode ) { method getLocationHeader (line 341) | public String getLocationHeader() { method getStatusCode (line 345) | public int getStatusCode() { FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/ListDirectoryTest.java class ListDirectoryTest (line 40) | public class ListDirectoryTest extends BaseRuntimeTest { method ListDirectoryTest (line 65) | public ListDirectoryTest( MessageGetterFactory messageGetterFactory, H... method runTest (line 75) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/ListHomeDirectoryTest.java class ListHomeDirectoryTest (line 22) | public class ListHomeDirectoryTest extends ListDirectoryTest { method ListHomeDirectoryTest (line 28) | public ListHomeDirectoryTest( MessageGetterFactory messageGetterFactory, FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/ListRootDirectoryTest.java class ListRootDirectoryTest (line 22) | public class ListRootDirectoryTest extends ListDirectoryTest { method ListRootDirectoryTest (line 28) | public ListRootDirectoryTest( MessageGetterFactory messageGetterFactory, FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/PingFileSystemEntryPointTest.java class PingFileSystemEntryPointTest (line 33) | public class PingFileSystemEntryPointTest extends BaseRuntimeTest { method PingFileSystemEntryPointTest (line 46) | public PingFileSystemEntryPointTest( MessageGetterFactory messageGette... method runTest (line 55) | @Override FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/hdfs/WriteToAndDeleteFromUsersHomeFolderTest.java class WriteToAndDeleteFromUsersHomeFolderTest (line 41) | public class WriteToAndDeleteFromUsersHomeFolderTest extends BaseRuntime... method WriteToAndDeleteFromUsersHomeFolderTest (line 94) | public WriteToAndDeleteFromUsersHomeFolderTest( MessageGetterFactory m... method runTest (line 105) | @Override FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/kafka/KafkaConnectTest.java class KafkaConnectTest (line 42) | public class KafkaConnectTest extends BaseRuntimeTest { method KafkaConnectTest (line 57) | public KafkaConnectTest( MessageGetterFactory messageGetterFactory, Na... method KafkaConnectTest (line 61) | KafkaConnectTest( MessageGetterFactory messageGetterFactory, Function<... method runTest (line 71) | @Override public RuntimeTestResultSummary runTest( final Object object... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/mr/GatewayPingJobTrackerTest.java class GatewayPingJobTrackerTest (line 27) | public class GatewayPingJobTrackerTest extends PingJobTrackerTest { method GatewayPingJobTrackerTest (line 30) | public GatewayPingJobTrackerTest( MessageGetterFactory messageGetterFa... method runTest (line 35) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/mr/PingJobTrackerTest.java class PingJobTrackerTest (line 33) | public class PingJobTrackerTest extends BaseRuntimeTest { method PingJobTrackerTest (line 43) | public PingJobTrackerTest( MessageGetterFactory messageGetterFactory, method runTest (line 52) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/oozie/GatewayPingOozieHostTest.java class GatewayPingOozieHostTest (line 27) | public class GatewayPingOozieHostTest extends PingOozieHostTest { method GatewayPingOozieHostTest (line 30) | public GatewayPingOozieHostTest( MessageGetterFactory messageGetterFac... method runTest (line 35) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/oozie/PingOozieHostTest.java class PingOozieHostTest (line 35) | public class PingOozieHostTest extends BaseRuntimeTest { method PingOozieHostTest (line 46) | public PingOozieHostTest( MessageGetterFactory messageGetterFactory, method runTest (line 55) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/zookeeper/GatewayPingZookeeperEnsembleTest.java class GatewayPingZookeeperEnsembleTest (line 28) | public class GatewayPingZookeeperEnsembleTest extends PingZookeeperEnsem... method GatewayPingZookeeperEnsembleTest (line 35) | public GatewayPingZookeeperEnsembleTest( MessageGetterFactory messageG... method runTest (line 40) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/main/java/org/pentaho/big/data/impl/cluster/tests/zookeeper/PingZookeeperEnsembleTest.java class PingZookeeperEnsembleTest (line 38) | public class PingZookeeperEnsembleTest extends BaseRuntimeTest { method PingZookeeperEnsembleTest (line 65) | public PingZookeeperEnsembleTest( MessageGetterFactory messageGetterFa... method runTest (line 74) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/hdfs/ListDirectoryTestTest.java class ListDirectoryTestTest (line 41) | public class ListDirectoryTestTest { method setup (line 55) | @Before method init (line 75) | private void init() { method testNullHadoopFileSystem (line 79) | @Test method testClusterInitializationException (line 91) | @Test method testAccessControlException (line 106) | @Test method testIOException (line 118) | @Test method testHomeDirectorySuccess (line 130) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/hdfs/ListHomeDirectoryTestTest.java class ListHomeDirectoryTestTest (line 29) | public class ListHomeDirectoryTestTest { method setup (line 35) | @Before method testGetName (line 43) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/hdfs/ListRootDirectoryTestTest.java class ListRootDirectoryTestTest (line 29) | public class ListRootDirectoryTestTest { method setup (line 35) | @Before method testGetName (line 43) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/hdfs/PingFileSystemEntryPointTestTest.java class PingFileSystemEntryPointTestTest (line 35) | public class PingFileSystemEntryPointTestTest { method setup (line 44) | @Before method testGetName (line 58) | @Test method testSuccess (line 64) | @Test method testIsMapR (line 78) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/hdfs/WriteToAndDeleteFromUsersHomeFolderTestTest.java class WriteToAndDeleteFromUsersHomeFolderTestTest (line 42) | public class WriteToAndDeleteFromUsersHomeFolderTestTest { method setup (line 53) | @Before method init (line 73) | private void init() { method testNullFileSystem (line 78) | @Test method testClusterInitializationException (line 94) | @Test method testIOExceptionExists (line 112) | @Test method testIOExceptionCreate (line 127) | @Test method testIOExceptionWrite (line 142) | @Test method testIOExceptionDelete (line 160) | @Test method testPathExists (line 177) | @Test method testUnableToDelete (line 192) | @Test method testSuccess (line 211) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/kafka/KafkaConnectTestTest.java class KafkaConnectTestTest (line 42) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 51) | @Before method testSuccess (line 57) | @Test method testSuccessKerberos (line 69) | @Test method testError (line 85) | @Test method testSkip (line 97) | @Test method assertConsumer (line 109) | private Consumer assertConsumer( Map actualMap ) { FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/mr/PingJobTrackerTestTest.java class PingJobTrackerTestTest (line 35) | public class PingJobTrackerTestTest { method setup (line 44) | @Before method testGetName (line 57) | @Test method testSuccess (line 63) | @Test method testIsMapR (line 77) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/oozie/PingOozieHostTestTest.java class PingOozieHostTestTest (line 38) | public class PingOozieHostTestTest { method setup (line 48) | @Before method testGetName (line 61) | @Test method testMalformedURLException (line 67) | @Test method testSuccess (line 81) | @Test FILE: impl/clusterTests/src/test/java/org/pentaho/big/data/impl/cluster/tests/zookeeper/PingZookeeperEnsembleTestTest.java class PingZookeeperEnsembleTestTest (line 38) | public class PingZookeeperEnsembleTestTest { method setup (line 49) | @Before method testBlankHost (line 64) | @Test method testBlankPort (line 75) | @Test method testNoFailures (line 86) | @Test method testOneFailure (line 108) | @Test method testAllFailures (line 140) | @Test FILE: impl/shim/jaas/src/main/java/org/pentaho/big/data/impl/shim/jaas/JaasConfigServiceFactory.java class JaasConfigServiceFactory (line 21) | public class JaasConfigServiceFactory implements NamedClusterServiceFact... method JaasConfigServiceFactory (line 23) | public JaasConfigServiceFactory( method getServiceClass (line 26) | @Override public Class getServiceClass() { method canHandle (line 30) | @Override public boolean canHandle( NamedCluster namedCluster ) { method create (line 34) | @Override public JaasConfigService create( NamedCluster namedCluster ) { FILE: impl/shim/jaas/src/main/java/org/pentaho/big/data/impl/shim/jaas/JaasConfigServiceImpl.java class JaasConfigServiceImpl (line 19) | public class JaasConfigServiceImpl implements JaasConfigService { method JaasConfigServiceImpl (line 24) | public JaasConfigServiceImpl( Properties configProperties ) { method getJaasConfig (line 29) | @Override public String getJaasConfig() { method isKerberos (line 38) | @Override public boolean isKerberos() { FILE: impl/shim/jaas/src/test/java/org/pentaho/big/data/impl/shim/jaas/JaasConfigServiceFactoryTest.java class JaasConfigServiceFactoryTest (line 24) | public class JaasConfigServiceFactoryTest { method testCreatesAJaasConfig (line 26) | @Test FILE: impl/shim/jaas/src/test/java/org/pentaho/big/data/impl/shim/jaas/JaasConfigServiceImplTest.java class JaasConfigServiceImplTest (line 21) | public class JaasConfigServiceImplTest { method testEmptyPrincipalIsNotKerberos (line 23) | @Test method testEmptyKeytabIsNotKerberos (line 31) | @Test method testJaasWithKerberosKeytab (line 39) | @Test FILE: impl/shim/shimTests/src/main/java/org/pentaho/big/data/impl/shim/tests/TestShimConfig.java class TestShimConfig (line 35) | public class TestShimConfig extends BaseRuntimeTest { method TestShimConfig (line 49) | public TestShimConfig( HadoopFileSystemLocator hadoopFileSystemLocator... method runTest (line 58) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/shim/shimTests/src/main/java/org/pentaho/big/data/impl/shim/tests/TestShimLoad.java class TestShimLoad (line 30) | public class TestShimLoad extends BaseRuntimeTest { method TestShimLoad (line 42) | public TestShimLoad( MessageGetterFactory messageGetterFactory ) { method runTest (line 49) | @Override public RuntimeTestResultSummary runTest( Object objectUnderT... FILE: impl/shim/shimTests/src/test/java/org/pentaho/big/data/impl/shim/tests/TestShimLoadTest.java class TestShimLoadTest (line 34) | public class TestShimLoadTest { method setup (line 40) | @Before method testGetName (line 48) | @Test method testConfigurationException (line 53) | @Test method testSuccess (line 64) | @Test FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/AzureHdInsightsFileNameParser.java class AzureHdInsightsFileNameParser (line 18) | @SuppressWarnings( "deprecation" ) method AzureHdInsightsFileNameParser (line 25) | private AzureHdInsightsFileNameParser() { method getInstance (line 29) | public static AzureHdInsightsFileNameParser getInstance() { method extractHostName (line 39) | @Override protected String extractHostName( StringBuilder name ) { FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileNameParser.java class HDFSFileNameParser (line 23) | public class HDFSFileNameParser extends URLFileNameParser { method HDFSFileNameParser (line 27) | private HDFSFileNameParser() { method getInstance (line 31) | public static HDFSFileNameParser getInstance() { method parseUri (line 35) | @Override public FileName parseUri( VfsComponentContext context, FileN... method getHostNameCaseSensitive (line 60) | private String getHostNameCaseSensitive( String fileUri ) throws FileS... FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileObject.java class HDFSFileObject (line 28) | public class HDFSFileObject extends AbstractFileObject { method HDFSFileObject (line 32) | public HDFSFileObject( final AbstractFileName name, final HDFSFileSyst... method doGetContentSize (line 37) | @Override method doGetOutputStream (line 42) | @Override method doGetInputStream (line 53) | @Override method doGetInputStream (line 58) | @Override method doGetType (line 63) | @Override method doCreateFolder (line 84) | @Override method doDelete (line 89) | @Override method doRename (line 94) | @Override method doGetLastModifiedTime (line 99) | @Override method doSetLastModifiedTime (line 104) | @Override method doListChildren (line 110) | @Override FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileProvider.java class HDFSFileProvider (line 44) | public class HDFSFileProvider extends AbstractOriginatingFileProvider { method HDFSFileProvider (line 74) | @Deprecated method HDFSFileProvider (line 82) | @Deprecated method HDFSFileProvider (line 90) | public HDFSFileProvider( HadoopFileSystemLocator hadoopFileSystemLocat... method HDFSFileProvider (line 95) | public HDFSFileProvider( HadoopFileSystemLocator hadoopFileSystemLocat... method HDFSFileProvider (line 103) | public HDFSFileProvider( HadoopFileSystemLocator hadoopFileSystemLocat... method getMetastoreLocator (line 115) | protected synchronized MetastoreLocator getMetastoreLocator() { method doCreateFileSystem (line 127) | @Override protected FileSystem doCreateFileSystem( final FileName name... method getCapabilities (line 141) | @Override public Collection getCapabilities() { method getConfigBuilder (line 145) | @Override method resolveNamedCluster (line 150) | private NamedCluster resolveNamedCluster( String hostName, int port, f... FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileSystem.java class HDFSFileSystem (line 28) | public class HDFSFileSystem extends AbstractFileSystem implements FileSy... method HDFSFileSystem (line 31) | public HDFSFileSystem( final FileName rootName, final FileSystemOption... method addCapabilities (line 37) | @Override method createFile (line 51) | @Override protected FileObject createFile( AbstractFileName name ) thr... method getHDFSFileSystem (line 55) | public HadoopFileSystem getHDFSFileSystem() throws FileSystemException { FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/MapRFileNameParser.java class MapRFileNameParser (line 18) | public class MapRFileNameParser extends URLFileNameParser { method MapRFileNameParser (line 24) | private MapRFileNameParser() { method getInstance (line 28) | public static MapRFileNameParser getInstance() { method extractHostName (line 38) | @Override protected String extractHostName( StringBuilder name ) { FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/nc/NamedClusterConfigBuilder.java class NamedClusterConfigBuilder (line 29) | public class NamedClusterConfigBuilder extends KettleGenericFileSystemCo... method NamedClusterConfigBuilder (line 36) | public NamedClusterConfigBuilder() { method NamedClusterConfigBuilder (line 40) | public NamedClusterConfigBuilder( MetastoreLocator metastoreLocator, N... method getInstance (line 48) | public static NamedClusterConfigBuilder getInstance() { method getInstance (line 52) | public static FileSystemConfigBuilder getInstance( MetastoreLocator me... method getConfigClass (line 59) | @Override method snapshotNamedClusterToMetaStore (line 64) | public void snapshotNamedClusterToMetaStore( IMetaStore snapshotMetaSt... method setEmbeddedMetastoreKey (line 74) | public void setEmbeddedMetastoreKey( final FileSystemOptions opts, fin... method getEmbeddedMetastoreKey (line 78) | public String getEmbeddedMetastoreKey( final FileSystemOptions opts ) { FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/nc/NamedClusterFileObject.java class NamedClusterFileObject (line 23) | public class NamedClusterFileObject extends HDFSFileObject implements Al... method NamedClusterFileObject (line 27) | public NamedClusterFileObject( final AbstractFileName name, final Name... method getOriginalURIString (line 32) | @Override method getAELSafeURIString (line 37) | @Override method delete (line 42) | @Override FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/nc/NamedClusterFileSystem.java class NamedClusterFileSystem (line 26) | public class NamedClusterFileSystem extends HDFSFileSystem { method NamedClusterFileSystem (line 30) | public NamedClusterFileSystem( final FileName rootName, final URI real... method createFile (line 36) | @Override protected FileObject createFile( AbstractFileName name ) thr... method getRealFileSystemURI (line 40) | public URI getRealFileSystemURI() { FILE: impl/vfs-hdfs/src/main/java/org/pentaho/big/data/impl/vfs/hdfs/nc/NamedClusterProvider.java class NamedClusterProvider (line 46) | public class NamedClusterProvider extends HDFSFileProvider implements Vf... method NamedClusterProvider (line 51) | public NamedClusterProvider( HadoopFileSystemLocator hadoopFileSystemL... method NamedClusterProvider (line 65) | public NamedClusterProvider( HadoopFileSystemLocator hadoopFileSystemL... method NamedClusterProvider (line 74) | public NamedClusterProvider( HadoopFileSystemLocator hadoopFileSystemL... method NamedClusterProvider (line 88) | public NamedClusterProvider( HadoopFileSystemLocator hadoopFileSystemL... method doCreateFileSystem (line 98) | @Override method getConfigBuilder (line 121) | @Override method getNamedClusterByName (line 133) | NamedCluster getNamedClusterByName( String clusterNameToResolve, FileS... method getFileSystem (line 145) | protected synchronized FileSystem getFileSystem( final FileName rootNa... method getFileSystemKey (line 156) | private String getFileSystemKey( String rootName, FileSystemOptions fi... method getEmbeddedMetastoreKey (line 161) | private String getEmbeddedMetastoreKey( FileSystemOptions fileSystemOp... method getMetastore (line 165) | private IMetaStore getMetastore( String clusterNameToResolve, FileSyst... method addCacheEntry (line 184) | private void addCacheEntry( FileName rootName, FileSystem fs ) throws ... method closeFileSystem (line 195) | public void closeFileSystem( String embeddedMetastoreKey ) { method findFileSystem (line 210) | protected synchronized FileSystem findFileSystem( final Comparable ... FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/AzureFileNameParserTest.java class AzureFileNameParserTest (line 37) | @RunWith(MockitoJUnitRunner.class) method setUp (line 51) | @Before method cleanup (line 64) | @After method testDefaultPort (line 71) | @Test method rootPathNoClusterNameWasb (line 76) | @Test method withPathWasb (line 90) | @Test method withPathAndClusterNameWasb (line 105) | @Test method rootPathNoClusterNameAbfs (line 122) | @Test method withPathAbfs (line 136) | @Test method withPathAndClusterNameAbfs (line 151) | @Test method buildSchemeAnswer (line 168) | private Answer buildSchemeAnswer( String prefix, String buildPath ) { method buildExtractSchemeMocks (line 176) | private void buildExtractSchemeMocks( String prefix, String fullPath, ... FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileNameParserTest.java class HDFSFileNameParserTest (line 45) | @RunWith(MockitoJUnitRunner.class) method setUp (line 58) | @Before method cleanup (line 74) | @After method testDefaultPort (line 81) | @Test method testParseUriNullInput (line 86) | @Test method testParseUriMixedCase (line 96) | @Test method testParseUriMixedCaseLongName (line 108) | @Test method testParseUriThrowExceptionNoProtocol (line 120) | @Test method testParseUriUserNameFilePath (line 128) | @Test method buildSchemeAnswer (line 147) | private Answer buildSchemeAnswer( String prefix, String buildPath ) { method buildExtractSchemeMocks (line 155) | private void buildExtractSchemeMocks( String prefix, String fullPath, ... FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileObjectTest.java class HDFSFileObjectTest (line 42) | public class HDFSFileObjectTest { method setup (line 49) | @Before method testGetContentSize (line 62) | @Test method testDoGetOutputStreamAppend (line 71) | @Test method testDoGetOutputStreamCreate (line 78) | @Test method testDoGetInputStream (line 85) | @Test method testDoGetTypeFile (line 92) | @Test method testDoGetTypeFolder (line 100) | @Test method testDoGetTypeImaginary (line 108) | @Test method testDoCreateFolder (line 113) | @Test method testDoRename (line 119) | @Test method testDoGetLastModifiedTime (line 132) | @Test method testDoSetLastModifiedTime (line 141) | @Test method testDoListChildren (line 153) | @Test method testDoListChildrenWithSpaces (line 159) | @Test method testDoListChildrenInternal (line 165) | private void testDoListChildrenInternal( String childPathName ) throws... FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileProviderTest.java class HDFSFileProviderTest (line 42) | public class HDFSFileProviderTest { method setup (line 51) | @Before method testDoCreateFileSystemNoPort (line 72) | @Test method testGetCapabilities (line 87) | @Test FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/HDFSFileSystemTest.java class HDFSFileSystemTest (line 40) | public class HDFSFileSystemTest { method setup (line 45) | @Before method testAddCapabilities (line 52) | @Test method testAddAppendCapabilities (line 59) | @Test method testCreateFile (line 73) | @Test method testGetHDFSFileSystem (line 78) | @Test FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/MapRFileNameParserTest.java class MapRFileNameParserTest (line 36) | @RunWith(MockitoJUnitRunner.class) method setUp (line 47) | @Before method cleanup (line 59) | @After method testDefaultPort (line 66) | @Test method rootPathNoClusterName (line 71) | @Test method withPath (line 85) | @Test method withPathAndClusterName (line 100) | @Test method buildSchemeAnswer (line 117) | private Answer buildSchemeAnswer( String prefix, String buildPath ) { method buildExtractSchemeMocks (line 125) | private void buildExtractSchemeMocks( String prefix, String fullPath, ... FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/nc/NamedClusterConfigBuilderTest.java class NamedClusterConfigBuilderTest (line 34) | public class NamedClusterConfigBuilderTest { method setUp (line 44) | @Before method testSnapshotNamedClusterToMetaStore (line 49) | @Test method testSnapshotNamedClusterToMetaStore_staticInit (line 59) | @Test method testSnapshotNamedClusterToMetaStore_MetastoreDoesNotHaveNC (line 71) | @Test method testSnapshotNamedClusterToMetaStore_staticInit_MetastoreDoesNotHaveNC (line 81) | @Test FILE: impl/vfs-hdfs/src/test/java/org/pentaho/big/data/impl/vfs/hdfs/nc/NamedClusterProviderTest.java class NamedClusterProviderTest (line 51) | public class NamedClusterProviderTest { method setUp (line 76) | @Before method testGetNamedClusterByName_metastoreExist (line 85) | @Test method testGetNamedClusterByName_metastoreNotExist (line 94) | @Test method testGetConfigBuilder (line 103) | @Test method testDoCreateFileSystem (line 111) | @Test method testDoCreateFileSystem_NCTemplate (line 127) | @Test FILE: kettle-plugins/browse/src/main/java/org/pentaho/big/data/impl/browse/NamedClusterProvider.java class NamedClusterProvider (line 51) | public class NamedClusterProvider extends BaseFileProvider populateChildren( NamedClusterFile pare... method delete (line 207) | @Override method add (line 225) | @Override method getFile (line 239) | @Override method fileExists (line 255) | @Override method getNewName (line 267) | @Override method isSame (line 291) | @Override method rename (line 296) | @Override method copy (line 302) | @Override method move (line 320) | @Override method doMove (line 326) | private NamedClusterFile doMove( Bowl bowl, NamedClusterFile file, Str... method readFile (line 356) | @Override method writeFile (line 367) | @Override method getParent (line 389) | @Override method clearProviderCache (line 396) | @Override method getFile (line 401) | @Override method throwIllegalArgumentException (line 424) | private void throwIllegalArgumentException( String path, String messag... method createDirectory (line 428) | @Override FILE: kettle-plugins/browse/src/main/java/org/pentaho/big/data/impl/browse/model/NamedClusterDirectory.java class NamedClusterDirectory (line 26) | public class NamedClusterDirectory extends NamedClusterFile implements D... method getType (line 33) | @Override public String getType() { method hasChildren (line 37) | public boolean hasChildren() { method setHasChildren (line 41) | public void setHasChildren( boolean hasChildren ) { method getChildren (line 45) | public List getChildren() { method setChildren (line 49) | public void setChildren( List children ) { method addChild (line 53) | public void addChild( NamedClusterFile file ) { method isHasChildren (line 57) | public boolean isHasChildren() { method setCanAddChildren (line 61) | public void setCanAddChildren( boolean canAddChildren ) { method isCanAddChildren (line 65) | @Override public boolean isCanAddChildren() { method create (line 69) | public static NamedClusterDirectory create( String parent, FileObject ... method getEntityType (line 86) | @Override FILE: kettle-plugins/browse/src/main/java/org/pentaho/big/data/impl/browse/model/NamedClusterFile.java class NamedClusterFile (line 26) | public class NamedClusterFile extends BaseEntity implements File { method NamedClusterFile (line 29) | public NamedClusterFile() { method getType (line 33) | @Override public String getType() { method getProvider (line 37) | @Override public String getProvider() { method create (line 41) | public static NamedClusterFile create( String parent, FileObject fileO... method equals (line 56) | @Override public boolean equals( Object obj ) { method getEntityType (line 72) | @Override FILE: kettle-plugins/browse/src/main/java/org/pentaho/big/data/impl/browse/model/NamedClusterTree.java class NamedClusterTree (line 22) | public class NamedClusterTree implements Tree { method NamedClusterTree (line 29) | public NamedClusterTree( String name ) { method getName (line 33) | @Override public String getName() { method getChildren (line 37) | @Override public List getChildren() { method addChild (line 41) | @Override public void addChild( NamedClusterFile namedClusterFile ) { method isCanAddChildren (line 45) | @Override public boolean isCanAddChildren() { method getOrder (line 49) | @Override public int getOrder() { method getProvider (line 53) | @Override public String getProvider() { FILE: kettle-plugins/common/job/src/main/java/org/pentaho/big/data/kettle/plugins/job/AbstractJobEntry.java class AbstractJobEntry (line 34) | public abstract class AbstractJobEntry ext... method AbstractJobEntry (line 39) | public AbstractJobEntry() { method AbstractJobEntry (line 43) | protected AbstractJobEntry( LogChannelInterface logChannelInterface ) { method getJobConfig (line 50) | public T getJobConfig() { method setJobConfig (line 55) | public void setJobConfig( T jobConfig ) { method evaluates (line 63) | @Override method isUnconditional (line 71) | @Override method getXML (line 79) | @Override method loadXML (line 96) | @Override method loadRep (line 114) | @Override method saveRep (line 130) | @Override method execute (line 135) | @Override method setJobResultFailed (line 185) | public void setJobResultFailed( Result jobResult ) { method isValid (line 197) | public boolean isValid( T config ) { method getVariableSpace (line 205) | public VariableSpace getVariableSpace() { method createJobConfig (line 217) | protected abstract T createJobConfig(); method getValidationWarnings (line 233) | public abstract List getValidationWarnings( T config ); method getExecutionRunnable (line 244) | protected abstract Runnable getExecutionRunnable( final Result jobResu... method handleUncaughtThreadException (line 256) | protected abstract void handleUncaughtThreadException( Thread t, Throw... FILE: kettle-plugins/common/job/src/main/java/org/pentaho/big/data/kettle/plugins/job/AbstractJobEntryController.java class AbstractJobEntryController (line 58) | public abstract class AbstractJobEntryController aClass ) { method saveRep (line 446) | public static void saveRep( Object object, Repository rep, ObjectId id... method loadRep (line 466) | public static void loadRep( Object object, Repository rep, ObjectId id... method indent (line 483) | private static void indent( StringBuffer sb, int indentLevel ) { FILE: kettle-plugins/common/job/src/main/java/org/pentaho/big/data/kettle/plugins/job/JobEntryUtils.java class JobEntryUtils (line 21) | public class JobEntryUtils { method asBoolean (line 36) | public static boolean asBoolean( String s, VariableSpace variableSpace... method asLong (line 50) | public static Long asLong( String s, VariableSpace variableSpace ) { FILE: kettle-plugins/common/job/src/main/java/org/pentaho/big/data/kettle/plugins/job/PropertyEntry.java class PropertyEntry (line 24) | public class PropertyEntry implements Map.Entry, XulEven... method PropertyEntry (line 28) | public PropertyEntry() { method PropertyEntry (line 32) | public PropertyEntry( String key, String value ) { method getKey (line 37) | @Override method setKey (line 42) | public void setKey( String key ) { method getValue (line 46) | @Override method setValue (line 51) | @Override method equals (line 57) | @Override method hashCode (line 77) | @Override method addPropertyChangeListener (line 84) | @Override method removePropertyChangeListener (line 88) | @Override FILE: kettle-plugins/common/job/src/test/java/org/pentaho/big/data/kettle/plugins/job/AbstractJobEntryTest.java class AbstractJobEntryTest (line 44) | public class AbstractJobEntryTest { class TestJobEntry (line 46) | class TestJobEntry extends AbstractJobEntry { method TestJobEntry (line 49) | TestJobEntry() { method TestJobEntry (line 52) | TestJobEntry( long waitTime ) { method createJobConfig (line 56) | @Override method getValidationWarnings (line 61) | @Override method getExecutionRunnable (line 66) | @Override method handleUncaughtThreadException (line 80) | @Override method testLoadXml (line 88) | @Test method testLoadRep (line 111) | @Test method testEvaluates (line 160) | @Test method testIsUnconditional (line 166) | @Test method execute_blocking (line 172) | @Test method execute_nonblocking (line 188) | @Test method execute_interrupted (line 205) | @Test FILE: kettle-plugins/common/job/src/test/java/org/pentaho/big/data/kettle/plugins/job/BlockableJobConfigTest.java class BlockableJobConfigTest (line 34) | public class BlockableJobConfigTest { method init (line 39) | @Before method testAddPropertyChangeListener (line 45) | @Test method testAddPropertyChangeListener_propertyName (line 62) | @Test method testGetterAndSetter (line 85) | @Test method testClone (line 94) | @Test FILE: kettle-plugins/common/job/src/test/java/org/pentaho/big/data/kettle/plugins/job/JobEntryUtilsTest.java class JobEntryUtilsTest (line 23) | public class JobEntryUtilsTest { method asBoolean (line 25) | @Test method asLong (line 43) | @Test FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/ClusterTestDialog.java class ClusterTestDialog (line 57) | public class ClusterTestDialog extends Dialog { method create (line 74) | public static ClusterTestDialog create( Shell parent, NamedCluster nam... method ClusterTestDialog (line 79) | public ClusterTestDialog( Shell parent, NamedCluster namedCluster, Run... method getPropsUIInstance (line 91) | protected PropsUI getPropsUIInstance() { method open (line 95) | public RuntimeTestStatus open() { method cancel (line 181) | private void cancel() { method dispose (line 186) | public void dispose() { method getRunnable (line 195) | Runnable getRunnable( final ProgressBar progressBar, final RuntimeTest... FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/ClusterTestResultsDialog.java class ClusterTestResultsDialog (line 54) | public class ClusterTestResultsDialog extends Dialog { method ClusterTestResultsDialog (line 69) | public ClusterTestResultsDialog( Shell parent, RuntimeTestActionServic... method open (line 79) | public String open() { method ok (line 251) | private void ok() { method dispose (line 255) | public void dispose() { FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/CommonDialogFactory.java class CommonDialogFactory (line 26) | public class CommonDialogFactory { method createErrorDialog (line 27) | public void createErrorDialog( Shell parent, String title, String mess... method createNamedClusterDialog (line 31) | public NamedClusterDialogImpl createNamedClusterDialog( Shell parent, ... FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/HadoopClusterDelegateImpl.java class HadoopClusterDelegateImpl (line 40) | public class HadoopClusterDelegateImpl extends SpoonDelegate { method HadoopClusterDelegateImpl (line 63) | public HadoopClusterDelegateImpl( Spoon spoon, NamedClusterService nam... method HadoopClusterDelegateImpl (line 68) | public HadoopClusterDelegateImpl( Spoon spoon, NamedClusterService nam... method dupeNamedCluster (line 78) | public void dupeNamedCluster( IMetaStore metaStore, NamedCluster nc, S... method delNamedCluster (line 129) | public void delNamedCluster( IMetaStore metaStore, NamedCluster namedC... method backupAndAddShimConfiguration (line 138) | private void backupAndAddShimConfiguration( IMetaStore metaStore, Name... method editNamedCluster (line 189) | public String editNamedCluster( IMetaStore metaStore, NamedCluster nam... method getXmlMetastore (line 263) | private XmlMetaStore getXmlMetastore( IMetaStore metaStore ) throws Me... method getNamedClusterConfigsRootDir (line 283) | private String getNamedClusterConfigsRootDir( XmlMetaStore metaStore ) { method newNamedCluster (line 289) | public String newNamedCluster( VariableSpace variableSpace, IMetaStore... method addConfigProperties (line 325) | private void addConfigProperties( NamedCluster namedCluster ) throws E... method deleteNamedCluster (line 337) | private void deleteNamedCluster( IMetaStore metaStore, NamedCluster na... method saveNamedCluster (line 358) | private void saveNamedCluster( IMetaStore metaStore, NamedCluster name... FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/NamedClusterComposite.java class NamedClusterComposite (line 52) | public class NamedClusterComposite extends Composite { type Callback (line 101) | private interface Callback { method invoke (line 102) | public void invoke( NamedCluster nc, TextVar textVar, String value ); method NamedClusterComposite (line 105) | public NamedClusterComposite( Composite parent, NamedCluster namedClus... method setStateChangeListener (line 179) | public void setStateChangeListener( StateChangeListener stateChangeLis... method createFormDataAndAttachTopControl (line 183) | private FormData createFormDataAndAttachTopControl( Control topControl... method createHeadOfNamedClusterDialog (line 191) | private Composite createHeadOfNamedClusterDialog( final Composite pare... method createLabel (line 247) | private Label createLabel( Composite parent, String text, GridData gd ) { method createTextVar (line 255) | private TextVar createTextVar( final NamedCluster c, Composite parent,... method createGroup (line 272) | private Composite createGroup( Composite parent, String groupLabel ) { method createTwoColumnsContainer (line 298) | private Composite createTwoColumnsContainer( Composite parentComposite... method createShimVendorGroup (line 307) | private void createShimVendorGroup( Composite parentComposite, final N... method createStorageGroup (line 362) | private void createStorageGroup( Composite parentComposite, final Name... method createHdfsGroup (line 435) | private void createHdfsGroup( Composite parentComposite, final NamedCl... method createJobTrackerGroup (line 500) | private void createJobTrackerGroup( Composite parentComposite, final N... method createZooKeeperGroup (line 532) | private void createZooKeeperGroup( Composite parentComposite, final Na... method createOozieGroup (line 566) | private void createOozieGroup( Composite parentComposite, final NamedC... method createGatewayGroup (line 586) | private void createGatewayGroup( Composite parentComposite, final Name... method createKafkaGroup (line 644) | private void createKafkaGroup( Composite parentComposite, final NamedC... method setHdfsAndJobTrackerState (line 666) | private void setHdfsAndJobTrackerState( NamedCluster cluster ) { method shouldRenderGatewayCheckbox (line 688) | private boolean shouldRenderGatewayCheckbox( final NamedCluster namedC... method stateChanged (line 692) | private void stateChanged() { FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/NamedClusterDialogImpl.java class NamedClusterDialogImpl (line 58) | public class NamedClusterDialogImpl extends Dialog { method NamedClusterDialogImpl (line 72) | public NamedClusterDialogImpl( Shell parent, NamedClusterService named... method NamedClusterDialogImpl (line 77) | public NamedClusterDialogImpl( Shell parent, NamedClusterService named... method getNamedCluster (line 90) | public NamedCluster getNamedCluster() { method setNamedCluster (line 94) | public void setNamedCluster( NamedCluster namedCluster ) { method isNewClusterCheck (line 99) | public boolean isNewClusterCheck() { method setNewClusterCheck (line 103) | public void setNewClusterCheck( boolean newClusterCheck ) { method dispose (line 107) | public void dispose() { method open (line 112) | public String open() { method cancel (line 226) | private void cancel() { method ok (line 231) | public void ok() { FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/NamedClusterWidgetImpl.java class NamedClusterWidgetImpl (line 38) | public class NamedClusterWidgetImpl extends Composite { method NamedClusterWidgetImpl (line 44) | public NamedClusterWidgetImpl( Composite parent, boolean showLabel, Na... method newNamedCluster (line 92) | private void newNamedCluster() { method editNamedCluster (line 99) | private void editNamedCluster() { method getNamedClusterNames (line 119) | protected String[] getNamedClusterNames() { method initiate (line 128) | public void initiate() { method getSelectedNamedCluster (line 135) | public NamedCluster getSelectedNamedCluster() { method setSelectedNamedCluster (line 149) | public void setSelectedNamedCluster( String name ) { method addSelectionListener (line 159) | public void addSelectionListener( SelectionListener selectionListener ) { method getNameClusterCombo (line 163) | public Combo getNameClusterCombo() { method setNameClusterCombo (line 167) | protected void setNameClusterCombo( Combo nameClusterCombo ) { FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/StateChangeListener.java type StateChangeListener (line 16) | interface StateChangeListener { method stateModified (line 17) | void stateModified(); FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/TestResultComposite.java class TestResultComposite (line 19) | public class TestResultComposite extends Composite { method TestResultComposite (line 21) | public TestResultComposite( Composite parent, int style ) { FILE: kettle-plugins/common/ui/src/main/java/org/pentaho/big/data/plugins/common/ui/VfsFileChooserHelper.java class VfsFileChooserHelper (line 36) | public class VfsFileChooserHelper { method VfsFileChooserHelper (line 46) | public VfsFileChooserHelper( Shell shell, VfsFileChooserDialog fileCho... method VfsFileChooserHelper (line 50) | public VfsFileChooserHelper( Shell shell, VfsFileChooserDialog fileCho... method browse (line 59) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 64) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 69) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 74) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 79) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 84) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 89) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method getVariableSpace (line 115) | public VariableSpace getVariableSpace() { method setVariableSpace (line 119) | public void setVariableSpace( VariableSpace variableSpace ) { method getFileSystemOptions (line 123) | public FileSystemOptions getFileSystemOptions() { method setFileSystemOptions (line 127) | public void setFileSystemOptions( FileSystemOptions fileSystemOptions ) { method getDefaultScheme (line 131) | public String getDefaultScheme() { method setDefaultScheme (line 135) | public void setDefaultScheme( String defaultScheme ) { method getSchemeRestriction (line 139) | public String getSchemeRestriction() { method setSchemeRestriction (line 147) | public void setSchemeRestriction( String schemeRestriction ) { method setSchemeRestrictions (line 152) | public void setSchemeRestrictions( String[] schemeRestrictions ) { method showFileScheme (line 156) | public boolean showFileScheme() { method setShowFileScheme (line 160) | public void setShowFileScheme( boolean showFileScheme ) { method returnsUserAuthenticatedFileObjects (line 164) | protected boolean returnsUserAuthenticatedFileObjects() { method setNamedCluster (line 168) | public void setNamedCluster( NamedCluster namedCluster ) { method getFileChooserDialog (line 192) | @VisibleForTesting method getShell (line 197) | @VisibleForTesting method getSchemeRestrictions (line 202) | @VisibleForTesting FILE: kettle-plugins/common/ui/src/test/java/org/pentaho/big/data/plugins/common/ui/HadoopClusterDelegateImplTest.java class HadoopClusterDelegateImplTest (line 59) | public class HadoopClusterDelegateImplTest { method setup (line 73) | @Before method tearDown (line 99) | @After method deleteDirectory (line 104) | private boolean deleteDirectory( File directoryToBeDeleted) { method testSimpleConstructor (line 114) | @Test method testDupeNamedClusterNullNc (line 120) | @Test method testDupeNamedClusterNullNewName (line 126) | @Test method testDupeNamedClusterNullMetastore (line 144) | @Test method testDelNamedCluster (line 170) | @Test method testDelNamedClusterNull (line 179) | @Test method testDelNamedClusterNullMetastore (line 188) | @Test method testDelNamedClusterException (line 199) | @Test method testEditNamedClusterNullMetastore (line 214) | @Test method testEditNamedClusterNull (line 241) | @Test method testNewNamedClusterNullMetastore (line 258) | @Test method testNewNamedClusterNullVariables (line 278) | @Test method testNewNamedClusterNullResult (line 295) | @Test method testNewNamedClusterErrorSaving (line 311) | @Test FILE: kettle-plugins/common/ui/src/test/java/org/pentaho/big/data/plugins/common/ui/TestClusterTestDialog.java class TestClusterTestDialog (line 41) | public class TestClusterTestDialog { method beforeClass (line 52) | @BeforeClass method setKettleLogFactoryWithMock (line 59) | public static void setKettleLogFactoryWithMock() { method setup (line 66) | @Before method testExceptionIsPrintedToLog (line 86) | @Test method testExceptionsArePrintedToLog (line 115) | @Test method tearDown (line 146) | @AfterClass FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/BaseFormatInputField.java class BaseFormatInputField (line 25) | public class BaseFormatInputField extends BaseFileField implements IForm... method getFormatFieldName (line 34) | @Override method setFormatFieldName (line 39) | @Override method getPentahoFieldName (line 44) | @Override method setPentahoFieldName (line 49) | @Override method getPentahoType (line 54) | @Override method setPentahoType (line 59) | @Override method getFormatType (line 64) | @Override public int getFormatType() { method setFormatType (line 68) | @Override public void setFormatType( int formatType ) { method getPrecision (line 72) | @Override public int getPrecision() { method setPrecision (line 76) | @Override public void setPrecision( int precision ) { method getScale (line 80) | @Override public int getScale() { method setScale (line 84) | @Override public void setScale( int scale ) { method getStringFormat (line 88) | @Override method setStringFormat (line 93) | @Override method setPentahoType (line 98) | public void setPentahoType( String value ) { FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/BaseFormatOutputField.java class BaseFormatOutputField (line 19) | public class BaseFormatOutputField implements IFormatOutputField { method getFormatFieldName (line 45) | @Override method setFormatFieldName (line 50) | @Override method getPentahoFieldName (line 55) | @Override method setPentahoFieldName (line 60) | @Override method getAllowNull (line 65) | @Override method setAllowNull (line 70) | @Override method getDefaultValue (line 75) | @Override method setDefaultValue (line 80) | @Override method setAllowNull (line 85) | @Injection( name = "FIELD_NULL_STRING", group = "FIELDS" ) method getFormatType (line 98) | @Override method setFormatType (line 103) | @Override method getPrecision (line 108) | @Override method setPrecision (line 113) | @Override method getScale (line 125) | @Override method setScale (line 130) | @Override method getPentahoType (line 142) | @Override method setPentahoType (line 147) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/FormatInputFile.java class FormatInputFile (line 23) | public class FormatInputFile extends BaseFileInputFiles { method normalizeAllocation (line 30) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/FormatInputOutputField.java class FormatInputOutputField (line 25) | public class FormatInputOutputField extends BaseFileField { method getPath (line 34) | public String getPath() { method setPath (line 38) | public void setPath( String path ) { method isNullable (line 42) | public boolean isNullable() { method setNullable (line 46) | public void setNullable( boolean nullable ) { method getSourceType (line 54) | public int getSourceType() { method setSourceType (line 58) | public void setSourceType( int sourceType ) { method setSourceType (line 62) | @Injection( name = "FIELD_SOURCE_TYPE", group = "FIELDS" ) method getSourceTypeDesc (line 67) | public String getSourceTypeDesc() { FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/orc/OrcFormatInputOutputField.java class OrcFormatInputOutputField (line 24) | public class OrcFormatInputOutputField { method getPath (line 39) | public String getPath() { method setPath (line 43) | public void setPath( String path ) { method getName (line 47) | public String getName() { method setName (line 51) | public void setName( String name ) { method getNullString (line 55) | public String getNullString() { method setNullString (line 59) | public void setNullString( String nullString ) { method getIfNullValue (line 63) | public String getIfNullValue() { method setIfNullValue (line 67) | public void setIfNullValue( String ifNullValue ) { method getType (line 71) | public int getType() { method setType (line 75) | public void setType( int type ) { method getTypeDesc (line 79) | public String getTypeDesc() { method setType (line 83) | @Injection( name = "FIELD_TYPE", group = "FIELDS" ) FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/orc/OrcInputField.java class OrcInputField (line 25) | public class OrcInputField extends BaseFormatInputField implements IOrcI... method getOrcType (line 26) | public OrcSpec.DataType getOrcType() { method setOrcType (line 30) | @Override method setOrcType (line 35) | @Injection( name = "ORC_TYPE", group = "FIELDS" ) method getTypeDesc (line 48) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/orc/OrcTypeConverter.java class OrcTypeConverter (line 22) | public class OrcTypeConverter { method convertToOrcType (line 24) | public static String convertToOrcType( int pdiType ) { method convertToOrcType (line 48) | public static String convertToOrcType( String type ) { FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/orc/input/OrcInputMetaBase.java class OrcInputMetaBase (line 53) | @SuppressWarnings( "deprecation" ) method OrcInputMetaBase (line 57) | public OrcInputMetaBase() { method getFilename (line 63) | public String getFilename() { method setFilename (line 72) | public void setFilename( String filename ) { method getInputFields (line 76) | public OrcInputField[] getInputFields() { method setInputFields (line 80) | public void setInputFields( OrcInputField[] inputFields ) { method setInputFields (line 84) | public void setInputFields( List inputFields ) { method getXML (line 89) | @Override method saveRep (line 138) | @Override method loadXML (line 176) | @Override method readRep (line 222) | @Override method allocateFiles (line 265) | public void allocateFiles( int nrFiles ) { method getEncoding (line 277) | @Override method setDefault (line 282) | @Override method resolve (line 288) | @Override method getFields (line 305) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/orc/output/OrcOutputField.java class OrcOutputField (line 21) | public class OrcOutputField extends BaseFormatOutputField implements IOr... method getOrcType (line 22) | public OrcSpec.DataType getOrcType() { method setFormatType (line 26) | @Override method setFormatType (line 31) | @Override method setFormatType (line 40) | @Injection( name = "FIELD_TYPE", group = "FIELDS" ) method isDecimalType (line 56) | public boolean isDecimalType() { method setPrecision (line 60) | @Override method setScale (line 72) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/orc/output/OrcOutputMetaBase.java class OrcOutputMetaBase (line 52) | public abstract class OrcOutputMetaBase extends BaseStepMeta implements ... method setDefault (line 89) | @Override method getFilename (line 94) | public String getFilename() { method isOverrideOutput (line 99) | public boolean isOverrideOutput() { method setOverrideOutput (line 103) | public void setOverrideOutput( boolean overrideOutput ) { method setFilename (line 107) | public void setFilename( String filename ) { method getOutputFields (line 112) | public List getOutputFields() { method setOutputFields (line 117) | public void setOutputFields( List outputFields ) { method getStripeSize (line 122) | public int getStripeSize() { method setStripeSize (line 126) | public void setStripeSize( int stripeSize ) { method getCompressSize (line 130) | public int getCompressSize() { method setCompressSize (line 134) | public void setCompressSize( int compressSize ) { method getRowsBetweenEntries (line 138) | public int getRowsBetweenEntries() { method setRowsBetweenEntries (line 142) | public void setRowsBetweenEntries( int rowsBetweenEntries ) { method isDateInFileName (line 146) | public boolean isDateInFileName() { method setDateInFileName (line 150) | public void setDateInFileName( boolean dateInFileName ) { method isTimeInFileName (line 154) | public boolean isTimeInFileName() { method setTimeInFileName (line 158) | public void setTimeInFileName( boolean timeInFileName ) { method getDateTimeFormat (line 162) | public String getDateTimeFormat() { method setDateTimeFormat (line 166) | public void setDateTimeFormat( String dateTimeFormat ) { method loadXML (line 170) | @Override method readData (line 175) | private void readData( Node stepnode, IMetaStore metastore ) throws Ke... method getXML (line 210) | @Override method readRep (line 246) | @Override method saveRep (line 283) | @Override method resolve (line 315) | @Override method getCompressionType (line 330) | public String getCompressionType() { method setCompressionType (line 334) | public void setCompressionType( String value ) { method getCompressionType (line 338) | public CompressionKind getCompressionType(VariableSpace vspace ) { method getCompressionTypes (line 342) | public String[] getCompressionTypes() { method findCompressionType (line 346) | private CompressionKind findCompressionType( String str ) { method getStrings (line 354) | protected static String[] getStrings( T[] objects ) { method parseFromToString (line 363) | protected static T parseFromToString( String str, T[] values, T de... method parseReplace (line 374) | private T parseReplace( String value, VariableSpace vspace, Functi... method constructOutputFilename (line 386) | public String constructOutputFilename() { class FieldNames (line 402) | protected static class FieldNames { FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/parquet/ParquetTypeConverter.java class ParquetTypeConverter (line 21) | public class ParquetTypeConverter { method convertToParquetType (line 24) | public static String convertToParquetType( String pdiType ) { method convertToParquetType (line 36) | public static String convertToParquetType( int pdiType ) { FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/parquet/input/ParquetInputField.java class ParquetInputField (line 21) | public class ParquetInputField extends BaseFormatInputField implements I... method setParquetType (line 22) | @Override method setParquetType (line 27) | @Injection( name = "PARQUET_TYPE", group = "FIELDS" ) method getParquetType (line 38) | @Override method getTypeDesc (line 43) | public String getTypeDesc() { FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/parquet/input/ParquetInputMetaBase.java class ParquetInputMetaBase (line 53) | @SuppressWarnings( "deprecation" ) method ParquetInputMetaBase (line 61) | public ParquetInputMetaBase() { method isIgnoreEmptyFolder (line 67) | public boolean isIgnoreEmptyFolder() { method setIgnoreEmptyFolder (line 71) | public void setIgnoreEmptyFolder( boolean ignoreEmptyFolder ) { method getFilename (line 75) | public String getFilename() { method getFileNames (line 83) | public String[] getFileNames() { method setFilename (line 91) | public void setFilename( String filename ) { method setFilenames (line 95) | public void setFilenames( String[] filenames ) { method getInputFields (line 99) | public ParquetInputField[] getInputFields() { method setInputFields (line 103) | public void setInputFields( ParquetInputField[] inputFields ) { method setInputFields (line 107) | public void setInputFields( List inputFields ) { method getXML (line 112) | @Override method saveRep (line 163) | @Override method loadXML (line 201) | @Override method readRep (line 251) | @Override method allocateFiles (line 299) | public void allocateFiles( int nrFiles ) { method getEncoding (line 310) | @Override method setDefault (line 315) | @Override method resolve (line 321) | @Override method getFields (line 339) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/parquet/output/ParquetOutputField.java class ParquetOutputField (line 22) | public class ParquetOutputField extends BaseFormatOutputField implements... method getParquetType (line 24) | @Override method setFormatType (line 34) | public void setFormatType( ParquetSpec.DataType formatType ) { method setFormatType (line 38) | @Injection( name = "FIELD_PARQUET_TYPE", group = "FIELDS" ) method setPentahoType (line 52) | @Injection( name = "FIELD_TYPE", group = "FIELDS" ) method isDecimalType (line 63) | public boolean isDecimalType() { method setPrecision (line 68) | @Override method setScale (line 80) | @Override FILE: kettle-plugins/formats-meta/src/main/java/org/pentaho/big/data/kettle/plugins/formats/parquet/output/ParquetOutputMetaBase.java class ParquetOutputMetaBase (line 54) | public abstract class ParquetOutputMetaBase extends BaseStepMeta impleme... method setDefault (line 94) | @Override method getFilename (line 101) | public String getFilename() { method setFilename (line 105) | public void setFilename( String filename ) { method isEnableDictionary (line 109) | public boolean isEnableDictionary() { method setEnableDictionary (line 113) | public void setEnableDictionary( boolean enableDictionary ) { method isOverrideOutput (line 117) | public boolean isOverrideOutput() { method setOverrideOutput (line 121) | public void setOverrideOutput( boolean overrideOutput ) { method isDateInFilename (line 125) | public boolean isDateInFilename() { method setDateInFilename (line 129) | public void setDateInFilename( boolean dateInFilename ) { method isTimeInFilename (line 133) | public boolean isTimeInFilename() { method setTimeInFilename (line 137) | public void setTimeInFilename( boolean timeInFilename ) { method getDateTimeFormat (line 141) | public String getDateTimeFormat() { method setDateTimeFormat (line 145) | public void setDateTimeFormat( String dateTimeFormat ) { method getExtension (line 149) | public String getExtension() { method setExtension (line 153) | public void setExtension( String extension ) { method getOutputFields (line 157) | public List getOutputFields() { method setOutputFields (line 161) | public void setOutputFields( List outputFields ) { method loadXML (line 165) | @Override method readData (line 170) | private void readData( Node stepnode, IMetaStore metastore ) throws Ke... method getXML (line 207) | @Override method getParquetTypeId (line 249) | private int getParquetTypeId( String savedType ) { method readRep (line 265) | @Override method saveRep (line 304) | @Override method resolve (line 335) | @Override method constructOutputFilename (line 350) | public String constructOutputFilename() { method getRowGroupSize (line 369) | public int getRowGroupSize( VariableSpace vspace ) { method parseReplace (line 373) | protected T parseReplace( String value, VariableSpace vspace, Func... method getRowGroupSize (line 385) | public String getRowGroupSize() { method setRowGroupSize (line 389) | public void setRowGroupSize( String value ) { method getCompressionType (line 393) | public String getCompressionType() { method setCompressionType (line 397) | public void setCompressionType( String value ) { method getCompressionType (line 402) | public CompressionCodecName getCompressionType(VariableSpace vspace ) { method getParquetVersion (line 406) | public String getParquetVersion() { method setParquetVersion (line 410) | public void setParquetVersion( String value ) { method getParquetVersion (line 415) | public ParquetVersion getParquetVersion( VariableSpace vspace ) { method getDataPageSize (line 419) | public int getDataPageSize( VariableSpace vspace ) { method getDataPageSize (line 423) | public String getDataPageSize() { method setDataPageSize (line 427) | public void setDataPageSize( String dataPageSize ) { method getDictPageSize (line 431) | public int getDictPageSize( VariableSpace vspace ) { method getDictPageSize (line 435) | public String getDictPageSize() { method setDictPageSize (line 439) | public void setDictPageSize( String dictPageSize ) { method getCompressionTypes (line 443) | public String[] getCompressionTypes() { method getVersionTypes (line 447) | public String[] getVersionTypes() { method findCompressionType (line 451) | private CompressionCodecName findCompressionType( String str ) { method findParquetVersion (line 459) | private ParquetVersion findParquetVersion( String str ) { type ParquetVersion (line 467) | public static enum ParquetVersion { method ParquetVersion (line 472) | private ParquetVersion( String name ) { method toString (line 476) | @Override method getStrings (line 482) | protected static String[] getStrings( T[] objects ) { method parseFromToString (line 491) | protected static T parseFromToString( String str, T[] values, T de... method getMsg (line 502) | private static String getMsg( String key ) { FILE: kettle-plugins/formats-meta/src/test/java/org/pentaho/big/data/kettle/plugins/formats/orc/OrcInputFieldTest.java class OrcInputFieldTest (line 21) | public class OrcInputFieldTest { method testSetOrcTypeByEnumToString (line 23) | @Test method testSetOrcTypeByName (line 32) | @Test method testSetOrcTypeCaseInsensitive (line 41) | @Test method testSetOrcTypeAllDataTypes (line 57) | @Test method testSetOrcTypeInvalidValue (line 73) | @Test method testSetOrcTypeEmptyString (line 83) | @Test method testSetOrcTypeNull (line 93) | @Test method testSetOrcTypeWithWhitespace (line 107) | @Test method testSetOrcTypeTimestamp (line 117) | @Test method testSetOrcTypeDate (line 125) | @Test method testSetOrcTypeDecimal (line 133) | @Test method testSetOrcTypeBoolean (line 141) | @Test method testSetOrcTypeOverwrite (line 149) | @Test method testSetOrcTypeIntegerBothFormats (line 164) | @Test FILE: kettle-plugins/formats-meta/src/test/java/org/pentaho/big/data/kettle/plugins/formats/orc/input/OrcInputMetaBaseTest.java class OrcInputMetaBaseTest (line 32) | public class OrcInputMetaBaseTest { method setUp (line 39) | @Before method testGetXmlWorksIfWeUpdateOnlyPartOfInputFilesInformation (line 68) | @Test FILE: kettle-plugins/formats-meta/src/test/java/org/pentaho/big/data/kettle/plugins/formats/orc/output/OrcOutputFieldTest.java class OrcOutputFieldTest (line 20) | public class OrcOutputFieldTest { method setFormatTypeTest (line 22) | @Test FILE: kettle-plugins/formats-meta/src/test/java/org/pentaho/big/data/kettle/plugins/formats/orc/output/OrcOutputMetabaseTest.java class OrcOutputMetabaseTest (line 32) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 36) | @Before method setCompressionType (line 52) | @Test FILE: kettle-plugins/formats-meta/src/test/java/org/pentaho/big/data/kettle/plugins/formats/parquet/input/ParquetInputMetaBaseTest.java class ParquetInputMetaBaseTest (line 32) | public class ParquetInputMetaBaseTest { method setUp (line 39) | @Before method testGetXmlWorksIfWeUpdateOnlyPartOfInputFilesInformation (line 68) | @Test FILE: kettle-plugins/formats-meta/src/test/java/org/pentaho/big/data/kettle/plugins/formats/parquet/output/ParquetOutputMetaBaseTest.java class ParquetOutputMetaBaseTest (line 34) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 42) | @Before method getXMLShouldCallRegisterUrl (line 58) | @Test method setCompressionType (line 69) | @Test method setParquetVersion (line 121) | public void setParquetVersion() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/NamedClusterResolver.java class NamedClusterResolver (line 29) | public class NamedClusterResolver { method NamedClusterResolver (line 36) | private NamedClusterResolver() { method NamedClusterResolver (line 41) | private NamedClusterResolver( NamedClusterServiceLocator namedClusterS... method getInstance (line 47) | public static synchronized NamedClusterResolver getInstance() { method getMetastoreLocator (line 54) | protected synchronized MetastoreLocator getMetastoreLocator() { method resolveNamedCluster (line 68) | public NamedCluster resolveNamedCluster( String fileName ) { method resolveNamedCluster (line 72) | public NamedCluster resolveNamedCluster( String fileName, String embed... method fileUri (line 101) | private Optional fileUri( String fileName ) { method getNamedClusterServiceLocator (line 110) | public NamedClusterServiceLocator getNamedClusterServiceLocator() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/NullableValuesEnum.java type NullableValuesEnum (line 22) | public enum NullableValuesEnum { method NullableValuesEnum (line 28) | NullableValuesEnum( String value ) { method getValue (line 32) | public String getValue() { method getDefaultValue (line 36) | public static NullableValuesEnum getDefaultValue() { method getValuesArr (line 40) | public static String[] getValuesArr() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/BaseOrcStepDialog.java class BaseOrcStepDialog (line 54) | public abstract class BaseOrcStepDialog retrieveSchema( Bowl bowl, NamedClu... method createSchemaFromMeta (line 123) | public static List createSchemaFromMeta( OrcInputMetaB... method getKettleVFSFileName (line 127) | public static String getKettleVFSFileName( Bowl bowl, String path ) th... FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/input/OrcInputData.java class OrcInputData (line 24) | public class OrcInputData extends BaseFileInputStepData { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/input/OrcInputDialog.java class OrcInputDialog (line 51) | @PluginDialog( id = "OrcInput", image = "OI.svg", pluginType = PluginDia... method OrcInputDialog (line 74) | public OrcInputDialog( Shell parent, Object in, TransMeta transMeta, S... method createUI (line 78) | @Override method populateFieldsTable (line 150) | protected void populateFieldsTable() { method getProcessedFileName (line 174) | private String getProcessedFileName() { method getInputFieldsFromOrcFile (line 178) | private List getInputFieldsFromOrcFile( bool... method setField (line 195) | private void setField( TableItem item, String fieldValue, int fieldInd... method getData (line 204) | @Override method getTypeDesc (line 241) | public String getTypeDesc( int type ) { method getSourceTypeDesc (line 245) | public String getSourceTypeDesc( int type ) { method getInfo (line 252) | @Override method extractOrcType (line 293) | private OrcSpec.DataType extractOrcType( String orcNameTypeFromUI ) { method extractFieldName (line 313) | private String extractFieldName( String orcNameTypeFromUI ) { method concatenateOrcNameAndType (line 324) | private String concatenateOrcNameAndType( IOrcInputField field ) { method doPreview (line 335) | private void doPreview() { method getWidth (line 373) | @Override method getHeight (line 378) | @Override method getStepTitle (line 383) | @Override method getPreview (line 388) | @Override method selectionOperation (line 393) | @Override protected SelectionOperation selectionOperation() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/input/OrcInputMeta.java class OrcInputMeta (line 26) | @Step( id = "OrcInput", image = "OI.svg", name = "OrcInput.Name", descri... method OrcInputMeta (line 46) | public OrcInputMeta() { method OrcInputMeta (line 50) | public OrcInputMeta( NamedClusterResolver namedClusterResolver ) { method getStep (line 54) | @Override method getStepData (line 60) | @Override method getNamedClusterResolver (line 65) | public NamedClusterResolver getNamedClusterResolver() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/output/OrcOutput.java class OrcOutput (line 39) | public class OrcOutput extends BaseStep implements StepInterface { method OrcOutput (line 47) | public OrcOutput( StepMeta stepMeta, StepDataInterface stepDataInterfa... method processRow (line 52) | @Override method init (line 107) | public void init() throws Exception { method getNamedCluster (line 144) | private NamedCluster getNamedCluster() { method closeWriter (line 148) | public void closeWriter() throws KettleException { method init (line 157) | public boolean init( StepMetaInterface smi, StepDataInterface sdi ) { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/output/OrcOutputData.java class OrcOutputData (line 20) | public class OrcOutputData extends BaseStepData implements StepDataInter... FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/output/OrcOutputDialog.java class OrcOutputDialog (line 65) | @PluginDialog( id = "OrcOutput", image = "OO.svg", pluginType = PluginDi... method OrcOutputDialog (line 88) | public OrcOutputDialog( Shell parent, Object orcOutputMeta, TransMeta ... method OrcOutputDialog (line 92) | public OrcOutputDialog( Shell parent, OrcOutputMeta orcOutputMeta, Tra... method createUI (line 97) | @Override method getStepTitle (line 141) | @Override method addFieldsTab (line 146) | private void addFieldsTab( CTabFolder wTabFolder ) { method addOptionsTab (line 209) | private void addOptionsTab( CTabFolder wTabFolder ) { method createComboVar (line 381) | protected ComboVar createComboVar( Composite container, String[] optio... method getComboVarValue (line 388) | protected String getComboVarValue( ComboVar combo ) { method createLabel (line 394) | private Label createLabel( Composite container, String labelRef ) { method ok (line 401) | @Override method getData (line 425) | protected void getData( OrcOutputMeta meta ) { method getInfo (line 471) | @Override method saveOutputFields (line 494) | private void saveOutputFields( TableView wFields, OrcOutputMeta meta ) { method validateOutputFields (line 526) | private List validateOutputFields( TableView wFields ) { method getNullableValue (line 558) | private String getNullableValue( String nullString ) { method populateFieldsUI (line 562) | private void populateFieldsUI( OrcOutputMeta meta, TableView wOutputFi... method coalesce (line 582) | private String coalesce( String value ) { method populateFieldsUI (line 586) | private void populateFieldsUI( List fields, TableView ... method getFields (line 600) | protected void getFields() { method getFieldsChoiceDialog (line 614) | private MessageDialog getFieldsChoiceDialog( Shell shell, int existing... method getFieldsFromPreviousStep (line 629) | private void getFieldsFromPreviousStep( RowMetaInterface row, TableVie... method getWidth (line 725) | @Override method getHeight (line 730) | @Override method getPreview (line 735) | @Override method selectionOperation (line 740) | @Override protected SelectionOperation selectionOperation() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/output/OrcOutputMeta.java class OrcOutputMeta (line 26) | @Step( id = "OrcOutput", image = "OO.svg", name = "OrcOutput.Name", desc... method OrcOutputMeta (line 34) | public OrcOutputMeta() { method OrcOutputMeta (line 37) | public OrcOutputMeta( NamedClusterResolver namedClusterResolver ) { method getStep (line 41) | @Override method getStepData (line 47) | @Override method getNamedClusterResolver (line 52) | public NamedClusterResolver getNamedClusterResolver() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/output/PvfsFileAliaser.java class PvfsFileAliaser (line 36) | public class PvfsFileAliaser { method PvfsFileAliaser (line 51) | public PvfsFileAliaser( Bowl bowl, String finalFilePath, VariableSpace... method generateAlias (line 61) | public String generateAlias() throws KettleFileException, FileSystemEx... method copyFileToFinalDestination (line 83) | public void copyFileToFinalDestination() throws KettleFileException, I... method deleteTempFileAndFolder (line 94) | public void deleteTempFileAndFolder() { method aliasingIsActive (line 105) | private boolean aliasingIsActive() { method s3nSwitchedTos3a (line 109) | private boolean s3nSwitchedTos3a() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/BaseParquetStepDialog.java class BaseParquetStepDialog (line 54) | public abstract class BaseParquetStepDialog retrieveSchema( method createSchemaFromMeta (line 66) | public static List createSchemaFromMeta( ParquetIn... method processRow (line 74) | @Override public boolean processRow( StepMetaInterface smi, StepDataIn... method initSplits (line 112) | void initSplits() throws Exception { method getNamedCluster (line 172) | private NamedCluster getNamedCluster() { method openReader (line 176) | void openReader( ParquetInputData data ) throws Exception { method init (line 183) | @Override protected boolean init() { method createReader (line 187) | @Override protected IBaseFileInputReader createReader( ParquetInputMet... FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/input/ParquetInputData.java class ParquetInputData (line 26) | public class ParquetInputData extends BaseFileInputStepData { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/input/ParquetInputDialog.java class ParquetInputDialog (line 51) | @PluginDialog( id = "ParquetInput", image = "PI.svg", pluginType = Plugi... method ParquetInputDialog (line 74) | public ParquetInputDialog( Shell parent, Object in, TransMeta transMet... method createUI (line 78) | @Override method populateFieldsTable (line 160) | protected void populateFieldsTable() { method getProcessedFileName (line 185) | private String getProcessedFileName() { method getInputFieldsFromParquetFile (line 189) | private List getInputFieldsFromParquetFi... method setField (line 206) | private void setField( TableItem item, String fieldValue, int fieldInd... method getData (line 215) | @Override method getTypeDesc (line 253) | public String getTypeDesc( int type ) { method getSourceTypeDesc (line 257) | public String getSourceTypeDesc( int type ) { method getInfo (line 264) | @Override method extractParquetType (line 315) | private ParquetSpec.DataType extractParquetType( String parquetNameTyp... method extractFieldName (line 335) | private String extractFieldName( String parquetNameTypeFromUI ) { method concatenateParquetNameAndType (line 346) | private String concatenateParquetNameAndType( IParquetInputField field... method doPreview (line 357) | private void doPreview() { method getWidth (line 397) | @Override method getHeight (line 402) | @Override method getStepTitle (line 407) | @Override method getPreview (line 412) | @Override method selectionOperation (line 417) | @Override protected SelectionOperation selectionOperation() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/input/ParquetInputMeta.java class ParquetInputMeta (line 25) | @Step( id = "ParquetInput", image = "PI.svg", name = "ParquetInput.Name"... method ParquetInputMeta (line 45) | public ParquetInputMeta() { method ParquetInputMeta (line 48) | public ParquetInputMeta( NamedClusterResolver namedClusterResolver ) { method getStep (line 52) | @Override method getStepData (line 58) | @Override method getNamedClusterResolver (line 63) | public NamedClusterResolver getNamedClusterResolver() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/input/VFSScheme.java class VFSScheme (line 16) | public class VFSScheme { method VFSScheme (line 22) | public VFSScheme( String scheme, String schemeName ) { method getScheme (line 27) | public String getScheme() { method getSchemeName (line 31) | public String getSchemeName() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/output/ParquetOutput.java class ParquetOutput (line 36) | public class ParquetOutput extends BaseStep implements StepInterface { method ParquetOutput (line 44) | public ParquetOutput( StepMeta stepMeta, StepDataInterface stepDataInt... method processRow (line 49) | @Override method init (line 96) | public void init( RowMetaInterface rowMeta ) throws Exception { method getNamedCluster (line 142) | private NamedCluster getNamedCluster() { method closeWriter (line 146) | public void closeWriter() throws KettleException { method init (line 155) | @Override FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/output/ParquetOutputData.java class ParquetOutputData (line 20) | public class ParquetOutputData extends BaseStepData implements StepDataI... FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/output/ParquetOutputDialog.java class ParquetOutputDialog (line 66) | @PluginDialog( id = "ParquetOutput", image = "PO.svg", pluginType = Plug... method ParquetOutputDialog (line 106) | public ParquetOutputDialog( Shell parent, Object parquetOutputMeta, Tr... method ParquetOutputDialog (line 110) | public ParquetOutputDialog( Shell parent, ParquetOutputMeta parquetOut... method createComboVar (line 115) | public static ComboVar createComboVar( TransMeta transMeta, ModifyList... method createLabel (line 123) | public static Label createLabel( Composite container, String labelRef,... method getFieldsChoiceDialog (line 130) | public static MessageDialog getFieldsChoiceDialog( Shell shell, int ne... method createUI (line 174) | protected void createUI() { method createAfterFile (line 197) | protected Control createAfterFile( Composite afterFile ) { method getStepTitle (line 221) | @Override method addFieldsTab (line 226) | private void addFieldsTab( CTabFolder wTabFolder ) { method addOptionsTab (line 294) | private void addOptionsTab( CTabFolder wTabFolder ) { method actualizeDictionaryPageSizeControl (line 416) | void actualizeDictionaryPageSizeControl() { method actualizeDateTimeControls (line 422) | void actualizeDateTimeControls() { method getComboVarValue (line 432) | protected String getComboVarValue( ComboVar combo ) { method getData (line 441) | protected void getData( ParquetOutputMeta meta ) { method coalesce (line 471) | public static String coalesce( String value ) { method getInfo (line 476) | @Override method saveOutputFields (line 499) | private void saveOutputFields( TableView wFields, ParquetOutputMeta me... method populateFieldsUI (line 535) | private void populateFieldsUI( ParquetOutputMeta meta, TableView wOutp... method populateFieldsUI (line 559) | private void populateFieldsUI( List fields, TableV... method getFieldsFromPreviousStep (line 572) | private void getFieldsFromPreviousStep( RowMetaInterface row, TableVie... method getFields (line 668) | protected void getFields() { method getWidth (line 691) | @Override method getHeight (line 696) | @Override method getPreview (line 701) | @Override method selectionOperation (line 707) | @Override protected SelectionOperation selectionOperation() { FILE: kettle-plugins/formats/core/src/main/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/output/ParquetOutputMeta.java class ParquetOutputMeta (line 26) | @Step( id = "ParquetOutput", image = "PO.svg", name = "ParquetOutput.Nam... method ParquetOutputMeta (line 37) | public ParquetOutputMeta() { method ParquetOutputMeta (line 41) | public ParquetOutputMeta( NamedClusterResolver namedClusterResolver ) { method getStep (line 45) | @Override method getStepData (line 51) | @Override method getNamedClusterResolver (line 56) | public NamedClusterResolver getNamedClusterResolver() { FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/NamedClusterResolverTest.java class NamedClusterResolverTest (line 50) | @RunWith(MockitoJUnitRunner.class) method setupClass (line 69) | @BeforeClass method tearDownClass (line 75) | @AfterClass method before (line 83) | @Before method createResolverWithMocks (line 129) | private NamedClusterResolver createResolverWithMocks() throws Exception { method after (line 137) | @After method resetSingleton (line 143) | private void resetSingleton() throws Exception { method windowsFilePathsAreHandled (line 150) | @Test method testNamedClusterByName (line 157) | @Test method testNamedClusterByHost (line 171) | @Test FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/input/OrcInputMetaInjectionTest.java class OrcInputMetaInjectionTest (line 27) | public class OrcInputMetaInjectionTest extends BaseMetadataInjectionTest... method setup (line 30) | @Before method test (line 38) | @Test FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/input/OrcInputTest.java class OrcInputTest (line 64) | @RunWith(MockitoJUnitRunner.class) method setUp (line 105) | @Before method returnNextInputRow (line 152) | private Object[] returnNextInputRow() { method testProcessRow (line 161) | @Test method testInit (line 186) | @Test method testProcessRowKettleFailure (line 191) | @Test method testProcessRowGeneralFailure (line 206) | @Test method setOrcRowMeta (line 221) | private RowMeta setOrcRowMeta() { method setInputRowMeta (line 232) | private RowMeta setInputRowMeta() { method setInputRows (line 241) | private void setInputRows() { method setOrcRows (line 249) | private void setOrcRows() { class OrcRecordIterator (line 257) | private class OrcRecordIterator implements Iterator { method OrcRecordIterator (line 261) | OrcRecordIterator() { method init (line 265) | private void init() { method hasNext (line 270) | @Override method next (line 281) | @Override FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/output/OrcOutputMetaInjectionTest.java class OrcOutputMetaInjectionTest (line 32) | public class OrcOutputMetaInjectionTest extends BaseMetadataInjectionTe... method setup (line 35) | @Before method test (line 43) | @Test method checkOrcTypes (line 66) | protected void checkOrcTypes( String propertyName, IntGetter getter, C... FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/orc/output/OrcOutputTest.java class OrcOutputTest (line 69) | @RunWith(MockitoJUnitRunner.class) method setUp (line 110) | @Before method testProcessRow (line 160) | @Test method testProcessRowIllegalState (line 185) | @Test method testProcessRowKettleFailure (line 195) | @Test method testProcessRowGeneralFailure (line 209) | @Test method returnNextParquetRow (line 223) | private Object[] returnNextParquetRow() { method setOrcOutputRows (line 232) | private void setOrcOutputRows() { method setDataInputRowMeta (line 239) | private void setDataInputRowMeta() { method setDataInputRows (line 245) | private void setDataInputRows() { method testAliasFile (line 254) | @Test FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/output/PvfsFileAliaserTest.java class PvfsFileAliaserTest (line 35) | @RunWith( MockitoJUnitRunner.class ) method setup (line 50) | @BeforeClass method setUp (line 56) | @Before method testGenerateWithActiveAlias (line 67) | @Test method testGenerateWithInactiveAlias (line 78) | @Test method testCopyFileToFinalDestinationWithoutGenerate (line 88) | @Test method testDeleteTempFileAndFolderWithoutGenerate (line 95) | @Test method assertTempFileExistsAndDelete (line 102) | private void assertTempFileExistsAndDelete() { method deleteTempFile (line 108) | private void deleteTempFile() { FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/input/ParquetInputMetaInjectionTest.java class ParquetInputMetaInjectionTest (line 27) | public class ParquetInputMetaInjectionTest extends BaseMetadataInjection... method setup (line 29) | @Before method test (line 35) | @Test method getParquetTypeCodes (line 77) | public static int[] getParquetTypeCodes( String[] parquetTypeNames ) { FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/input/ParquetInputTest.java class ParquetInputTest (line 65) | @RunWith(MockitoJUnitRunner.class) method setUp (line 108) | @Before method returnNextInputRow (line 155) | private Object[] returnNextInputRow() { method testProcessRow (line 164) | @Test method testInit (line 189) | @Test method testProcessNoSuchFile (line 194) | @Test method testProcessRowKettleFailure (line 207) | @Test method testProcessRowGeneralFailure (line 221) | @Test method setParquetRowMeta (line 235) | private RowMeta setParquetRowMeta() { method setInputRowMeta (line 246) | private RowMeta setInputRowMeta() { method setInputRows (line 255) | private void setInputRows() { method setParquetRows (line 263) | private void setParquetRows() { class ParquetRecordIterator (line 271) | private class ParquetRecordIterator implements Iterator { method ParquetRecordIterator (line 276) | ParquetRecordIterator() { method init (line 280) | private void init() { method hasNext (line 285) | @Override method next (line 296) | @Override FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/output/ParquetOutputMetaInjectionTest.java class ParquetOutputMetaInjectionTest (line 27) | public class ParquetOutputMetaInjectionTest extends BaseMetadataInjectio... method setup (line 29) | @Before method test (line 35) | @Test FILE: kettle-plugins/formats/core/src/test/java/org/pentaho/big/data/kettle/plugins/formats/impl/parquet/output/ParquetOutputTest.java class ParquetOutputTest (line 73) | @RunWith(MockitoJUnitRunner.class) method setUp (line 117) | @Before method testProcessRow (line 169) | @Test method initShouldPassEmbeddedMetastoreKey (line 195) | @Test method testProcessRowIllegalState (line 207) | @Test method testProcessRowKettleFailure (line 219) | @Test method testProcessRowGeneralFailure (line 234) | @Test method returnNextParquetRow (line 249) | private Object[] returnNextParquetRow() { method setParquetOutputRows (line 258) | private void setParquetOutputRows() { method setDataInputRowMeta (line 264) | private void setDataInputRowMeta() { method setDataInputRows (line 270) | private void setDataInputRows() { method testAliasFile (line 279) | @Test FILE: kettle-plugins/guiTestActionHandlers/src/main/java/org/pentaho/big/data/plugins/gui/test/actionHandlers/ShowHelpDialogActionHandler.java class ShowHelpDialogActionHandler (line 26) | public class ShowHelpDialogActionHandler implements RuntimeTestActionHan... method canHandle (line 28) | @Override public boolean canHandle( RuntimeTestAction runtimeTestActio... method handle (line 32) | @Override public void handle( RuntimeTestAction runtimeTestAction ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/HadoopClusterDelegate.java class HadoopClusterDelegate (line 32) | public class HadoopClusterDelegate { method HadoopClusterDelegate (line 43) | public HadoopClusterDelegate( NamedClusterService clusterService, Runt... method openDialog (line 48) | public void openDialog( String dialogState, Map urlPar... FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/HadoopClusterDialog.java class HadoopClusterDialog (line 39) | public class HadoopClusterDialog extends ThinDialog { method HadoopClusterDialog (line 52) | HadoopClusterDialog( Shell shell, int width, int height ) { method open (line 56) | void open( String title, String thinAppState, Map urlP... method getClientPath (line 120) | private String getClientPath() { method getOsgiServicePort (line 131) | private int getOsgiServicePort() { method getEndpointURL (line 140) | private String getEndpointURL( String path ) { method connectedToRepo (line 161) | private boolean connectedToRepo() { method getRepo (line 166) | private Repository getRepo() { method getKettleProperty (line 170) | private String getKettleProperty( String propertyName ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/NamedClusterDialog.java class NamedClusterDialog (line 73) | public class NamedClusterDialog extends Wizard { method NamedClusterDialog (line 94) | public NamedClusterDialog( NamedClusterService namedClusterService, IM... method isConnectedToRepo (line 113) | public boolean isConnectedToRepo() { method getShimIdentifier (line 122) | public String getShimIdentifier() { method createModel (line 126) | private ThinNameClusterModel createModel( ThinNameClusterModel model ) { method initialize (line 166) | public void initialize( ThinNameClusterModel model ) { method addPages (line 185) | public void addPages() { method editCluster (line 206) | public void editCluster() { method createNewCluster (line 220) | public void createNewCluster() { method performFinish (line 227) | public boolean performFinish() { method saveNewNamedCluster (line 252) | private void saveNewNamedCluster() { method saveEditedNamedCluster (line 264) | private void saveEditedNamedCluster() { method getTestResults (line 276) | private Object[] getTestResults() throws KettleException { method canFinish (line 291) | public boolean canFinish() { method getDialogState (line 318) | public String getDialogState() { method clusterNameExists (line 322) | public boolean clusterNameExists( String clusterName ) { method setDevMode (line 326) | public void setDevMode( boolean devMode ) { method isDevMode (line 330) | public boolean isDevMode() { method isEditMode (line 334) | public boolean isEditMode() { method main (line 338) | public static void main( String[] args ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/pages/ClusterSettingsPage.java class ClusterSettingsPage (line 58) | public class ClusterSettingsPage extends WizardPage { method ClusterSettingsPage (line 91) | public ClusterSettingsPage( VariableSpace variables, ThinNameClusterMo... method createControl (line 98) | public void createControl( Composite composite ) { method createDriverGroup (line 168) | private void createDriverGroup() { method getLoadedDriverVersion (line 216) | private String getLoadedDriverVersion() { method getLoadedDriverVendor (line 228) | private String getLoadedDriverVendor() { method createSiteXMLFilesGroup (line 240) | private void createSiteXMLFilesGroup() { method processTableSelection (line 289) | private void processTableSelection() { method removeSelectedSiteFiles (line 294) | private void removeSelectedSiteFiles() { method getSelectedSiteFiles (line 309) | private List getSelectedSiteFiles() { method createHdfsGroup (line 319) | private void createHdfsGroup() { method createJobTrackerGroup (line 380) | private void createJobTrackerGroup() { method createZooKeeperGroup (line 411) | private void createZooKeeperGroup() { method createOozieGroup (line 441) | private void createOozieGroup() { method createKafkaGroup (line 461) | private void createKafkaGroup() { method createFiller (line 481) | private void createFiller() { method browse (line 487) | private void browse() { method validate (line 500) | private void validate() { method getNextPage (line 525) | public IWizardPage getNextPage() { method isConnectedToRepo (line 549) | private boolean isConnectedToRepo() { method initialize (line 558) | public void initialize( ThinNameClusterModel model ) { method disposeComponents (line 598) | private void disposeComponents() { method getTableItems (line 626) | private List> getTableItems( Tabl... method getPreviousPage (line 636) | public IWizardPage getPreviousPage() { method performHelp (line 640) | public void performHelp() { method setTableItems (line 644) | private void setTableItems( List>... method addSiteFileToTable (line 651) | private void addSiteFileToTable( String fileName ) { method isDevMode (line 656) | private boolean isDevMode() { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/pages/KerberosSettingsPage.java class KerberosSettingsPage (line 46) | public class KerberosSettingsPage extends WizardPage { method KerberosSettingsPage (line 70) | public KerberosSettingsPage( VariableSpace variables, ThinNameClusterM... method createControl (line 77) | public void createControl( Composite composite ) { method displaySecurityMethodFields (line 126) | private void displaySecurityMethodFields() { method disposeComponents (line 138) | private void disposeComponents() { method createPasswordAuthenticationFields (line 150) | private void createPasswordAuthenticationFields() { method createKeytabAuthenticationFields (line 209) | private void createKeytabAuthenticationFields() { method validate (line 301) | private void validate() { method isDevMode (line 358) | private boolean isDevMode() { method isConnectedToRepo (line 364) | private boolean isConnectedToRepo() { method initialize (line 373) | public void initialize( ThinNameClusterModel model ) { method updatePasswordFields (line 397) | private void updatePasswordFields( ThinNameClusterModel model ) { method updateKeytabFields (line 406) | private void updateKeytabFields( ThinNameClusterModel model ) { method authenticationBrowse (line 423) | private void authenticationBrowse() { method impersonationBrowse (line 436) | private void impersonationBrowse() { method clearImpersonation (line 449) | private void clearImpersonation() { method getNextPage (line 455) | public IWizardPage getNextPage() { method performHelp (line 459) | public void performHelp() { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/pages/KnoxSettingsPage.java class KnoxSettingsPage (line 38) | public class KnoxSettingsPage extends WizardPage { method KnoxSettingsPage (line 53) | public KnoxSettingsPage( VariableSpace variables, ThinNameClusterModel... method createControl (line 59) | public void createControl( Composite composite ) { method isDevMode (line 137) | private boolean isDevMode() { method isConnectedToRepo (line 143) | private boolean isConnectedToRepo() { method initialize (line 152) | public void initialize( ThinNameClusterModel model ) { method validate (line 170) | private void validate() { method getNextPage (line 179) | public IWizardPage getNextPage() { method performHelp (line 183) | public void performHelp() { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/pages/ReportPage.java class ReportPage (line 38) | public class ReportPage extends WizardPage { method ReportPage (line 54) | public ReportPage( ThinNameClusterModel model ) { method createControl (line 59) | public void createControl( Composite composite ) { method setTestResult (line 148) | public void setTestResult( String status ) { method setTestResults (line 172) | public void setTestResults( Object[] categories ) { method isDevMode (line 186) | private boolean isDevMode() { method isConnectedToRepo (line 192) | private boolean isConnectedToRepo() { method initialize (line 201) | public void initialize( ThinNameClusterModel model ) { method viewTestResults (line 215) | private void viewTestResults() { method editCluster (line 221) | private void editCluster() { method createNewCluster (line 226) | private void createNewCluster() { method getPreviousPage (line 231) | public IWizardPage getPreviousPage() { method getNextPage (line 235) | public IWizardPage getNextPage() { method performHelp (line 239) | public void performHelp() { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/pages/SecuritySettingsPage.java class SecuritySettingsPage (line 32) | public class SecuritySettingsPage extends WizardPage { type NamedClusterSecurityType (line 45) | public enum NamedClusterSecurityType {NONE, KERBEROS, KNOX} method SecuritySettingsPage (line 49) | public SecuritySettingsPage( ThinNameClusterModel model ) { method createControl (line 55) | public void createControl( Composite composite ) { method setSecurityType (line 106) | private void setSecurityType() { method isDevMode (line 125) | private boolean isDevMode() { method isConnectedToRepo (line 131) | private boolean isConnectedToRepo() { method initialize (line 140) | public void initialize( ThinNameClusterModel model ) { method getSecurityType (line 174) | public NamedClusterSecurityType getSecurityType() { method getNextPage (line 178) | public IWizardPage getNextPage() { method performHelp (line 189) | public void performHelp() { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/pages/TestResultsPage.java class TestResultsPage (line 42) | public class TestResultsPage extends WizardPage { method TestResultsPage (line 58) | public TestResultsPage( VariableSpace variables, ThinNameClusterModel ... method createControl (line 63) | public void createControl( Composite composite ) { method setTestResultsOrder (line 102) | private List setTestResultsOrder( Object[] categories ) { method getTestCategory (line 127) | private TestCategory getTestCategory( String categoryName, Object[] ca... method setTestResults (line 137) | public void setTestResults( Object[] categories ) { method initialize (line 201) | public void initialize( ThinNameClusterModel model ) { method performHelp (line 205) | public void performHelp() { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/util/BadSiteFilesException.java class BadSiteFilesException (line 16) | public class BadSiteFilesException extends Exception { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/util/CustomWizardDialog.java class CustomWizardDialog (line 26) | public class CustomWizardDialog extends WizardDialog { method CustomWizardDialog (line 28) | public CustomWizardDialog( Shell parentShell, IWizard newWizard ) { method style (line 41) | public void style() { method enableCancelButton (line 47) | public void enableCancelButton( boolean isEnabled ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/dialog/wizard/util/NamedClusterHelper.java class NamedClusterHelper (line 48) | public abstract class NamedClusterHelper { class DriverInfo (line 60) | public static class DriverInfo { method DriverInfo (line 65) | public DriverInfo( String id, String vendor, String version ) { method getId (line 71) | public String getId() { method getVendor (line 75) | public String getVendor() { method getVersion (line 79) | public String getVersion() { type FileType (line 96) | public enum FileType { method FileType (line 102) | FileType( String val ) { method getValue (line 106) | String getValue() { method createLabel (line 111) | public static Label createLabel( Composite parent, String text, GridDa... method createLabelWithStyle (line 119) | public static Label createLabelWithStyle( Composite parent, String tex... method createText (line 127) | public static TextVar createText( Composite parent, String text, GridD... method createText (line 132) | public static TextVar createText( Composite parent, String text, GridD... method processSiteFiles (line 146) | public static Map processSiteFiles( Thin... method copyAndUnzip (line 188) | public static List copyAndUnzip( InputStream fil... method isValidUpload (line 219) | public static boolean isValidUpload( String fileName, FileType fileTyp... method isConnectedToRepo (line 226) | public static boolean isConnectedToRepo() { method getEndpointURL (line 236) | public static String getEndpointURL( String endpoint ) { method getSecurityCredentials (line 243) | public static Map getSecurityCredentials() { method encodePassword (line 253) | public static String encodePassword( String password ) { method decodePassword (line 260) | public static String decodePassword( String password ) { method getVendorForDriver (line 277) | public static String getVendorForDriver( String driverId ) { method getVersionForDriver (line 287) | public static String getVersionForDriver( String driverId ) { method getDriverInfo (line 297) | public static DriverInfo getDriverInfo( String driverId ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/endpoints/CachedFileItemStream.java class CachedFileItemStream (line 24) | public class CachedFileItemStream { method CachedFileItemStream (line 31) | public CachedFileItemStream( FileItemInput fileItemStream ) throws IOE... method CachedFileItemStream (line 35) | public CachedFileItemStream( InputStream inputStream, String name, Str... method getCachedOutputStream (line 41) | public ByteArrayOutputStream getCachedOutputStream() { method getCachedInputStream (line 45) | public ByteArrayInputStream getCachedInputStream() { method getName (line 49) | public String getName() { method getFieldName (line 53) | public String getFieldName() { method getLastModified (line 57) | public long getLastModified() { method setLastModified (line 61) | public void setLastModified( long lastModified ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/endpoints/Category.java type Category (line 18) | public interface Category { method getTests (line 20) | public List getTests(); method getCategoryName (line 22) | public String getCategoryName(); method setCategoryName (line 24) | public void setCategoryName( String categoryName ); method setTests (line 26) | public void setTests( List tests ); method getCategoryStatus (line 28) | public String getCategoryStatus(); method setCategoryStatus (line 30) | public void setCategoryStatus( String categoryStatus ); method isCategoryActive (line 32) | public boolean isCategoryActive(); method setCategoryActive (line 34) | public void setCategoryActive( boolean categoryActive ); method addTest (line 36) | public void addTest( Test test ); FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/endpoints/HadoopClusterManager.java class HadoopClusterManager (line 116) | public class HadoopClusterManager implements RuntimeTestProgressCallback { type KERBEROS_SUBTYPE (line 138) | private enum KERBEROS_SUBTYPE { method KERBEROS_SUBTYPE (line 144) | KERBEROS_SUBTYPE( String val ) { method getValue (line 148) | public String getValue() { type SECURITY_TYPE (line 153) | private enum SECURITY_TYPE { method SECURITY_TYPE (line 160) | SECURITY_TYPE( String val ) { method getValue (line 164) | public String getValue() { type IMPERSONATION_TYPE (line 169) | private enum IMPERSONATION_TYPE { method IMPERSONATION_TYPE (line 175) | IMPERSONATION_TYPE( String val ) { method getValue (line 179) | public String getValue() { method HadoopClusterManager (line 201) | public HadoopClusterManager( Spoon spoon, NamedClusterService namedClu... method HadoopClusterManager (line 210) | public HadoopClusterManager( NamedClusterService namedClusterService, ... method importNamedCluster (line 215) | public JSONObject importNamedCluster( ThinNameClusterModel model, method deleteNamedClusterSchemaOnly (line 256) | private void deleteNamedClusterSchemaOnly( ThinNameClusterModel model ... method convertToNamedCluster (line 265) | private NamedCluster convertToNamedCluster( ThinNameClusterModel model... method deleteConfigFolder (line 289) | public boolean deleteConfigFolder( String configFolderName ) throws IO... method createNamedCluster (line 303) | public JSONObject createNamedCluster( ThinNameClusterModel model, method createNamedCluster (line 308) | @VisibleForTesting method editNamedCluster (line 328) | public JSONObject editNamedCluster( ThinNameClusterModel model, boolea... method getSiteFileInputStream (line 396) | public InputStream getSiteFileInputStream( String namedCluster, String... method getNamedCluster (line 401) | public ThinNameClusterModel getNamedCluster( String namedCluster ) { method configureNamedCluster (line 441) | private boolean configureNamedCluster( Map site... method installDriver (line 568) | public JSONObject installDriver( FileItemInput driver ) { method getIntersectionSiteFiles (line 593) | private List getIntersectionSiteFiles( ThinNameC... method installSiteFiles (line 607) | private void installSiteFiles( Map siteF... method addFileToConfigFolder (line 622) | private void addFileToConfigFolder( ByteArrayOutputStream outputStream... method addFileToNamedClusterSiteFiles (line 632) | private void addFileToNamedClusterSiteFiles( Map.Entry extractHostAndPort( String urlPattern ) { method deleteNamedCluster (line 971) | public void deleteNamedCluster( IMetaStore metaStore, String namedClus... method getShimIdentifier (line 991) | public String getShimIdentifier() { method getNamedClusterByName (line 1002) | public NamedCluster getNamedClusterByName( String namedCluster) { method runTests (line 1006) | public Object runTests( RuntimeTester runtimeTester, String namedClust... method produceTestCategories (line 1028) | public Object[] produceTestCategories( RuntimeTestStatus runtimeTestSt... method configureHadoopFileSystemTestCategory (line 1079) | private void configureHadoopFileSystemTestCategory( Category category,... method configureTestCategories (line 1090) | private void configureTestCategories( Category category, boolean isAct... method getTestStatus (line 1097) | private String getTestStatus( RuntimeTestResultEntry summary ) { method onProgress (line 1121) | public void onProgress( final RuntimeTestStatus clusterTestStatus ) { method refreshTree (line 1130) | @VisibleForTesting method getNamedClusterConfigsRootDir (line 1137) | @VisibleForTesting method doGet (line 1143) | public static String doGet( String endpointURL ) { method doMultipartHttpPost (line 1172) | private boolean doMultipartHttpPost( String endpoint, ThinNameClusterM... method createHttpClientAcceptingTlsIfNeeded (line 1240) | private static CloseableHttpClient createHttpClientAcceptingTlsIfNeede... method processDriverFile (line 1272) | public boolean processDriverFile( String driverFile, HadoopClusterMana... method saveNewNamedCluster (line 1292) | public void saveNewNamedCluster( ThinNameClusterModel thinNameClusterM... method saveEditedNamedCluster (line 1311) | public void saveEditedNamedCluster( ThinNameClusterModel thinNameClust... FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/endpoints/Test.java class Test (line 16) | public class Test { method Test (line 22) | public Test() { method Test (line 25) | public Test( String name ) { method getTestName (line 29) | public String getTestName() { method setTestName (line 33) | public void setTestName( String testName ) { method getTestStatus (line 37) | public String getTestStatus() { method setTestStatus (line 41) | public void setTestStatus( String testStatus ) { method isTestActive (line 45) | public boolean isTestActive() { method setTestActive (line 49) | public void setTestActive( boolean testActive ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/endpoints/TestCategory.java class TestCategory (line 19) | public class TestCategory implements Category { method TestCategory (line 26) | public TestCategory() { method TestCategory (line 29) | public TestCategory( String name ) { method getTests (line 33) | public List getTests() { method getCategoryName (line 37) | public String getCategoryName() { method setCategoryName (line 41) | public void setCategoryName( String categoryName ) { method setTests (line 45) | public void setTests( List tests ) { method getCategoryStatus (line 49) | public String getCategoryStatus() { method setCategoryStatus (line 53) | public void setCategoryStatus( String categoryStatus ) { method isCategoryActive (line 57) | public boolean isCategoryActive() { method setCategoryActive (line 61) | public void setCategoryActive( boolean categoryActive ) { method addTest (line 65) | public void addTest( Test test ) { FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/lifecycle/HadoopClusterLifecycleListener.java class HadoopClusterLifecycleListener (line 25) | @LifecyclePlugin( id = "HadoopClusterLifecycleListener" ) method onStart (line 29) | @Override method onExit (line 37) | @Override FILE: kettle-plugins/hadoop-cluster/ui/src/main/java/org/pentaho/big/data/kettle/plugins/hadoopcluster/ui/model/ThinNameClusterModel.java class ThinNameClusterModel (line 28) | public class ThinNameClusterModel { method setShimIdentifier (line 60) | public void setShimIdentifier(String shimIdentifier ) { method getShimIdentifier (line 64) | public String getShimIdentifier() { method getHdfsHost (line 68) | public String getHdfsHost() { method setHdfsHost (line 72) | public void setHdfsHost( String hdfsHost ) { method getHdfsPort (line 76) | public String getHdfsPort() { method setHdfsPort (line 80) | public void setHdfsPort( String hdfsPort ) { method getHdfsUsername (line 84) | public String getHdfsUsername() { method setHdfsUsername (line 88) | public void setHdfsUsername( String hdfsUsername ) { method getHdfsPassword (line 92) | public String getHdfsPassword() { method setHdfsPassword (line 96) | public void setHdfsPassword( String hdfsPassword ) { method getJobTrackerHost (line 100) | public String getJobTrackerHost() { method setJobTrackerHost (line 104) | public void setJobTrackerHost( String jobTrackerHost ) { method getJobTrackerPort (line 108) | public String getJobTrackerPort() { method setJobTrackerPort (line 112) | public void setJobTrackerPort( String jobTrackerPort ) { method getZooKeeperHost (line 116) | public String getZooKeeperHost() { method setZooKeeperHost (line 120) | public void setZooKeeperHost( String zooKeeperHost ) { method getZooKeeperPort (line 124) | public String getZooKeeperPort() { method setZooKeeperPort (line 128) | public void setZooKeeperPort( String zooKeeperPort ) { method getKafkaBootstrapServers (line 132) | public String getKafkaBootstrapServers() { method setKafkaBootstrapServers (line 136) | public void setKafkaBootstrapServers( String kafkaBootstrapServers ) { method getName (line 140) | public String getName() { method setName (line 144) | public void setName( String name ) { method getOozieUrl (line 148) | public String getOozieUrl() { method setOozieUrl (line 152) | public void setOozieUrl( String oozieUrl ) { method getOldName (line 156) | public String getOldName() { method setOldName (line 160) | public void setOldName( String oldName ) { method getSecurityType (line 164) | public String getSecurityType() { method setSecurityType (line 168) | public void setSecurityType( String securityType ) { method getKerberosSubType (line 172) | public String getKerberosSubType() { method setKerberosSubType (line 176) | public void setKerberosSubType( String kerberosSubType ) { method getKerberosAuthenticationUsername (line 180) | public String getKerberosAuthenticationUsername() { method setKerberosAuthenticationUsername (line 184) | public void setKerberosAuthenticationUsername( String kerberosAuthenti... method getKerberosAuthenticationPassword (line 188) | public String getKerberosAuthenticationPassword() { method setKerberosAuthenticationPassword (line 192) | public void setKerberosAuthenticationPassword( String kerberosAuthenti... method getKerberosImpersonationUsername (line 196) | public String getKerberosImpersonationUsername() { method setKerberosImpersonationUsername (line 200) | public void setKerberosImpersonationUsername( String kerberosImpersona... method getKerberosImpersonationPassword (line 204) | public String getKerberosImpersonationPassword() { method setKerberosImpersonationPassword (line 208) | public void setKerberosImpersonationPassword( String kerberosImpersona... method getGatewayUrl (line 212) | public String getGatewayUrl() { method setGatewayUrl (line 216) | public void setGatewayUrl( String gatewayUrl ) { method getGatewayUsername (line 220) | public String getGatewayUsername() { method setGatewayUsername (line 224) | public void setGatewayUsername( String gatewayUsername ) { method getGatewayPassword (line 228) | public String getGatewayPassword() { method setGatewayPassword (line 232) | public void setGatewayPassword( String gatewayPassword ) { method getKeytabAuthFile (line 236) | public String getKeytabAuthFile() { method setKeytabAuthFile (line 240) | public void setKeytabAuthFile( String keytabAuthFile ) { method getKeytabImpFile (line 244) | public String getKeytabImpFile() { method setKeytabImpFile (line 248) | public void setKeytabImpFile( String keytabImpFile ) { method getSiteFiles (line 252) | public List> getSiteFiles() { method setSiteFiles (line 256) | public void setSiteFiles( List> s... method unmarshall (line 260) | public static ThinNameClusterModel unmarshall( Map strea... method testMissingInfoImportNamedCluster (line 169) | @Test public void testMissingInfoImportNamedCluster() { method testSiteXMLParsingImportNamedCluster (line 184) | @Test public void testSiteXMLParsingImportNamedCluster() { method testSiteXMLParsingImportDataprocNamedCluster (line 196) | @Test public void testSiteXMLParsingImportDataprocNamedCluster() { method testCreateNamedCluster (line 207) | @Test public void testCreateNamedCluster() { method testOverwriteNamedClusterCaseInsensitive (line 215) | @Test public void testOverwriteNamedClusterCaseInsensitive() { method testEditNamedCluster (line 232) | @Test public void testEditNamedCluster() throws Exception { method testEditNamedClusterNameChange (line 242) | @Test public void testEditNamedClusterNameChange() throws Exception{ method testEditRemoveSiteFileNotInModel (line 253) | @Test public void testEditRemoveSiteFileNotInModel() { method testKeepFilesNotChangedInThinClient (line 303) | @Test public void testKeepFilesNotChangedInThinClient() throws IOExcep... method testFailNamedCluster (line 403) | @Test public void testFailNamedCluster() { method testInstallDriver (line 410) | @Test public void testInstallDriver() throws IOException { method testRunTests (line 428) | @Test public void testRunTests() { method testNamedClusterKnoxSecurity (line 454) | @Test public void testNamedClusterKnoxSecurity() { method testNamedClusterKerberosPasswordSecurity (line 470) | @Test public void testNamedClusterKerberosPasswordSecurity() throws Co... method testNamedClusterKerberosKeytabSecurity (line 505) | @Test public void testNamedClusterKerberosKeytabSecurity() throws Conf... method testGetNamedCluster (line 534) | @Test public void testGetNamedCluster() throws ConfigurationException { method testValidSiteFile (line 543) | @Test method allowsNullSpoon (line 550) | @Test method testResetSecurity (line 557) | @Test public void testResetSecurity() throws ConfigurationException { method testNamedClusterKerberosPasswordSecurityWithBlankPassword (line 587) | @Test public void testNamedClusterKerberosPasswordSecurityWithBlankPas... method tearDown (line 622) | @After public void tearDown() throws IOException { method getShimTestDir (line 629) | private File getShimTestDir() { method getFiles (line 637) | private Map getFiles( String filesLocati... method getFiles (line 641) | private Map getFiles( String filesLocati... FILE: kettle-plugins/hbase-meta/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/meta/AELHBaseMappingImpl.java class AELHBaseMappingImpl (line 30) | public class AELHBaseMappingImpl implements Mapping, Serializable { method AELHBaseMappingImpl (line 41) | public AELHBaseMappingImpl() { method addMappedColumn (line 44) | @Override method getTableName (line 56) | @Override method setTableName (line 61) | @Override method getMappingName (line 66) | @Override method setMappingName (line 71) | @Override method getKeyName (line 76) | @Override method setKeyName (line 81) | @Override method getKeyType (line 86) | @Override method setKeyType (line 91) | @Override method getMappedColumns (line 96) | @Override method setMappedColumns (line 101) | @Override method setKeyTypeAsString (line 106) | @Override method isTupleMapping (line 111) | @Override method setTupleMapping (line 116) | @Override method getTupleFamilies (line 121) | @Override method getTupleFamiliesSplit (line 126) | @Override method setTupleFamilies (line 131) | @Override method numMappedColumns (line 136) | @Override method saveRep (line 141) | @Override method getXML (line 146) | @Override method loadXML (line 181) | @Override method readRep (line 248) | @Override method getFriendlyName (line 253) | @Override method decodeKeyValue (line 258) | @Override FILE: kettle-plugins/hbase-meta/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/meta/AELHBaseValueMetaImpl.java class AELHBaseValueMetaImpl (line 30) | public class AELHBaseValueMetaImpl extends ValueMetaBase implements HBas... method AELHBaseValueMetaImpl (line 39) | public AELHBaseValueMetaImpl( boolean isKey, String alias, String colu... method isKey (line 49) | @Override method setKey (line 54) | @Override method getAlias (line 59) | @Override method setAlias (line 64) | @Override method getColumnName (line 70) | @Override method setColumnName (line 75) | @Override method getColumnFamily (line 80) | @Override method setColumnFamily (line 85) | @Override method setHBaseTypeFromString (line 90) | @Override method getHBaseTypeDesc (line 123) | @Override method decodeColumnValue (line 135) | @Override method encodeColumnValue (line 246) | @Override method getMappingName (line 304) | @Override method setMappingName (line 309) | @Override method getTableName (line 314) | @Override method setTableName (line 319) | @Override method getIsLongOrDouble (line 324) | @Override method setIsLongOrDouble (line 329) | @Override method getXml (line 334) | @Override method saveRep (line 349) | @Override method decodeBoolFromString (line 361) | public static Boolean decodeBoolFromString( byte[] rawEncoded ) { method decodeBoolFromNumber (line 388) | public static Boolean decodeBoolFromNumber( byte[] rawEncoded ) { FILE: kettle-plugins/hbase-meta/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/meta/AELHBaseMappingTest.java class AELHBaseMappingTest (line 35) | @RunWith( MockitoJUnitRunner.class ) method setup (line 39) | @Before method inflateFromXmlTest (line 53) | @Test method serializeToXmlTest (line 60) | @Test method getMappingNode (line 68) | private Node getMappingNode() throws IOException, ParserConfigurationE... FILE: kettle-plugins/hbase-meta/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/meta/AELHBaseValueMetaTest.java class AELHBaseValueMetaTest (line 27) | @RunWith( MockitoJUnitRunner.class ) method setup (line 31) | @Before method getXmlSerializationTest (line 44) | @Test method getHBaseTypeDescTest (line 55) | @Test method getHBaseTypeDescNumberTest (line 62) | @Test method decodeNullBytesTest (line 70) | @Test method decodeStringIntoObject (line 77) | @Test method decodeNumberIntoObject (line 85) | @Test method decodeFloadIntoObject (line 93) | @Test method decodeIntegerIntoObject (line 101) | @Test method decodeLongIntoObject (line 109) | @Test method decodeShortIntoObject (line 117) | @Test method decodeBigNumberIntoObject (line 126) | @Test method decodeBooleanStringIntoObject (line 134) | @Test method decodeBooleanFloatIntoObject (line 142) | @Test method decodeBooleanLongIntoObject (line 150) | @Test method decodeBooleanDoubleIntoObject (line 158) | @Test method decodeBooleanBytesIntoObject (line 166) | @Test method decodeBooleanShortIntoObject (line 175) | public void decodeBooleanShortIntoObject() throws KettleException { method decodeBooleanIntoObject (line 183) | @Test method decodeBytesIntoObject (line 191) | @Test method decodeDateIntoObject (line 199) | @Test method encodeNullBytesTest (line 207) | @Test method encodeStringIntoBytes (line 214) | @Test method encodeNumberIntoBytes (line 222) | @Test method encodeIntegerIntoBytes (line 230) | @Test method encodeBigNumberIntoBytes (line 238) | @Test method encodeDateIntoBytes (line 246) | @Test method encodeBooleanIntoBytes (line 254) | @Test method encodeBinaryIntoBytes (line 262) | @Test method integerIsNotLongOrDoubleTest (line 270) | @Test method longIsLongOrDouble (line 277) | @Test method floatIsNotLongOrDouble (line 284) | @Test method doubleIsLongOrDouble (line 291) | @Test FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/FilterDefinition.java class FilterDefinition (line 21) | public class FilterDefinition { method getAlias (line 41) | public String getAlias() { method setAlias (line 45) | public void setAlias( String alias ) { method getFieldType (line 49) | public String getFieldType() { method setFieldType (line 53) | public void setFieldType( String fieldType ) { method getComparisonType (line 57) | public ColumnFilter.ComparisonType getComparisonType() { method setComparisonType (line 61) | public void setComparisonType( ColumnFilter.ComparisonType comparisonT... method isSignedComparison (line 65) | public boolean isSignedComparison() { method setSignedComparison (line 69) | public void setSignedComparison( boolean signedComparison ) { method getConstant (line 73) | public String getConstant() { method setConstant (line 77) | public void setConstant( String constant ) { method getFormat (line 81) | public String getFormat() { method setFormat (line 85) | public void setFormat( String format ) { class ComparisonTypeConverter (line 89) | public static class ComparisonTypeConverter extends InjectionTypeConve... method string2enum (line 90) | @Override FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/HBaseConnectionException.java class HBaseConnectionException (line 19) | public class HBaseConnectionException extends Exception { method HBaseConnectionException (line 23) | public HBaseConnectionException( String message, Throwable cause ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/HbaseUtil.java class HbaseUtil (line 18) | public class HbaseUtil { method HbaseUtil (line 22) | private HbaseUtil() { method parseNamespaceFromTableName (line 25) | public static String parseNamespaceFromTableName( String tableName ) { method parseNamespaceFromTableName (line 29) | public static String parseNamespaceFromTableName( String tableName, St... method parseQualifierFromTableName (line 41) | public static String parseQualifierFromTableName( String tableName ) { method expandTableName (line 56) | public static String expandTableName( String namespace, String qualifi... method expandTableName (line 74) | public static String expandTableName( String qualifier ) { method expandLegacyTableNameOnLoad (line 88) | public static String expandLegacyTableNameOnLoad( String qualifier ) { method positionOfString (line 108) | private static int positionOfString( String target, String search ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/MappingDefinition.java class MappingDefinition (line 21) | public class MappingDefinition { method getTableName (line 32) | public String getTableName() { method setTableName (line 36) | public void setTableName( String tableName ) { method getMappingName (line 40) | public String getMappingName() { method setMappingName (line 44) | public void setMappingName( String mappingName ) { method getMappingColumns (line 48) | public List getMappingColumns() { method setMappingColumns (line 52) | public void setMappingColumns( List mappingColumns ) { class MappingColumn (line 56) | public static class MappingColumn { method getAlias (line 76) | public String getAlias() { method setAlias (line 80) | public void setAlias( String alias ) { method isKey (line 84) | public boolean isKey() { method setKey (line 88) | public void setKey( boolean key ) { method getColumnFamily (line 92) | public String getColumnFamily() { method setColumnFamily (line 96) | public void setColumnFamily( String columnFamily ) { method getColumnName (line 100) | public String getColumnName() { method setColumnName (line 104) | public void setColumnName( String columnName ) { method getType (line 108) | public String getType() { method setType (line 112) | public void setType( String type ) { method getIndexedValues (line 116) | public String getIndexedValues() { method setIndexedValues (line 120) | public void setIndexedValues( String indexedValues ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/NamedClusterLoadSaveUtil.java class NamedClusterLoadSaveUtil (line 32) | public class NamedClusterLoadSaveUtil { method loadClusterConfig (line 37) | public NamedCluster loadClusterConfig( NamedClusterService namedCluste... method getXml (line 82) | public void getXml( StringBuilder retval, NamedClusterService namedClu... method saveRep (line 113) | public void saveRep( Repository rep, IMetaStore metaStore, ObjectId id... FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/ServiceStatus.java class ServiceStatus (line 20) | public class ServiceStatus { method ServiceStatus (line 27) | private ServiceStatus() { method ServiceStatus (line 30) | private ServiceStatus( Exception exception ) { method isOk (line 35) | public boolean isOk() { method getException (line 39) | public Exception getException() { method notOk (line 43) | public static ServiceStatus notOk( Exception e ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/input/HBaseInput.java class HBaseInput (line 55) | public class HBaseInput extends BaseStep implements StepInterface { method HBaseInput (line 65) | public HBaseInput( StepMeta stepMeta, StepDataInterface stepDataInterf... method processRow (line 94) | @Override method init (line 286) | @Override method getKettleTypeByKeyType (line 306) | public static int getKettleTypeByKeyType( Mapping.KeyType keyType ) { method setStopped (line 333) | @Override FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/input/HBaseInputData.java class HBaseInputData (line 48) | public class HBaseInputData extends BaseStepData implements StepDataInte... method getOutputRowMeta (line 58) | public RowMetaInterface getOutputRowMeta() { method setOutputRowMeta (line 68) | public void setOutputRowMeta( RowMetaInterface rmi ) { method stringToURL (line 81) | public static URL stringToURL( String pathOrURL ) throws MalformedURLE... method setScanColumns (line 108) | public static void setScanColumns( ResultScannerBuilder resultScannerB... method setScanFilters (line 147) | public static void setScanFilters( ResultScannerBuilder resultScannerB... method getTupleOutputRows (line 199) | public static List getTupleOutputRows( HBaseService hBaseSer... method getOutputRow (line 227) | public static Object[] getOutputRow( Result result, List fields ) { method getOutputFields (line 405) | public List getOutputFields() { method setColumnFilters (line 414) | public void setColumnFilters( List list ) { method getColumnFilters (line 423) | public List getColumnFilters() { method setDefault (line 427) | public void setDefault() { method getIndexValues (line 438) | private String getIndexValues( HBaseValueMetaInterface vm ) { method applyInjection (line 453) | void applyInjection( VariableSpace space ) throws KettleException { method getMapping (line 499) | @VisibleForTesting method getMappingFromHBase (line 504) | static Mapping getMappingFromHBase( HBaseService hBaseService, Variabl... method createOutputFieldsDefinition (line 522) | @VisibleForTesting method createOutputFieldsDefinition (line 527) | static List createOutputFieldsDefinition( method createColumnFiltersFromDefinition (line 555) | @VisibleForTesting method createColumnFiltersFromDefinition (line 560) | static List createColumnFiltersFromDefinition( List getOutputFieldsDefinition() { method setOutputFieldsDefinition (line 1005) | public void setOutputFieldsDefinition( List out... method getFiltersDefinition (line 1009) | public List getFiltersDefinition() { method setFiltersDefinition (line 1013) | public void setFiltersDefinition( List filtersDefini... method getMappingDefinition (line 1017) | public MappingDefinition getMappingDefinition() { method setMappingDefinition (line 1021) | public void setMappingDefinition( MappingDefinition mappingDefinition ) { method getService (line 1025) | protected HBaseService getService() throws ClusterInitializationExcept... method getServiceStatus (line 1042) | public ServiceStatus getServiceStatus() { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/input/Messages.java class Messages (line 18) | public class Messages { method getString (line 21) | public static String getString( String key ) { method getString (line 25) | public static String getString( String key, String param1 ) { method getString (line 29) | public static String getString( String key, String param1, String para... method getString (line 33) | public static String getString( String key, String param1, String para... method getString (line 37) | public static String getString( String key, String param1, String para... method getString (line 41) | public static String getString( method getString (line 46) | public static String getString( String key, String param1, String para... FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/input/OutputFieldDefinition.java class OutputFieldDefinition (line 18) | public class OutputFieldDefinition { method isKey (line 38) | public boolean isKey() { method setKey (line 42) | public void setKey( boolean key ) { method getAlias (line 46) | public String getAlias() { method setAlias (line 50) | public void setAlias( String alias ) { method getColumnName (line 54) | public String getColumnName() { method setColumnName (line 58) | public void setColumnName( String columnName ) { method getFamily (line 62) | public String getFamily() { method setFamily (line 66) | public void setFamily( String family ) { method getHbaseType (line 70) | public String getHbaseType() { method setHbaseType (line 74) | public void setHbaseType( String hbaseType ) { method getFormat (line 78) | public String getFormat() { method setFormat (line 82) | public void setFormat( String format ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/ConfigurationProducer.java type ConfigurationProducer (line 29) | public interface ConfigurationProducer { method getHBaseService (line 30) | HBaseService getHBaseService() throws ClusterInitializationException; method getHBaseConnection (line 39) | HBaseConnection getHBaseConnection() throws ClusterInitializationExcep... method getCurrentConfiguration (line 41) | String getCurrentConfiguration(); FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/FieldProducer.java type FieldProducer (line 25) | public interface FieldProducer { method getIncomingFields (line 32) | RowMetaInterface getIncomingFields(); FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/HBaseRowToKettleTuple.java class HBaseRowToKettleTuple (line 37) | public class HBaseRowToKettleTuple { method HBaseRowToKettleTuple (line 83) | public HBaseRowToKettleTuple( ByteConversionUtil bytesUtil ) { method reset (line 90) | public void reset() { method hbaseRowToKettleTupleMode (line 113) | public List hbaseRowToKettleTupleMode( HBaseValueMetaInterfa... method hbaseRowToKettleTupleMode (line 146) | public List hbaseRowToKettleTupleMode( Object result, Mappin... FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/MappingAdmin.java class MappingAdmin (line 56) | public class MappingAdmin implements Closeable { method MappingAdmin (line 92) | public MappingAdmin( HBaseConnection hBaseConnection ) { method setMappingTableName (line 102) | public void setMappingTableName( String tableName ) { method getMappingTableName (line 111) | public String getMappingTableName() { method createTestMapping (line 121) | public void createTestMapping() throws Exception { method createTestTupleMapping (line 235) | public void createTestTupleMapping() throws Exception { method createTupleTestTable (line 268) | public void createTupleTestTable() throws Exception { method createTestTable (line 314) | public void createTestTable() throws Exception { method createMappingTable (line 442) | public void createMappingTable( String tableName ) throws Exception { method mappingExists (line 466) | public boolean mappingExists( String tableName, String mappingName ) t... method getMappedTables (line 484) | public Set getMappedTables( String nameSpace ) throws Exception { method addMappedTables (line 498) | private void addMappedTables( Set tableNames, String nameSpace... method getMappingNames (line 530) | public List getMappingNames( String tableName ) throws Excepti... method deleteMapping (line 570) | public boolean deleteMapping( String tableName, String mappingName ) t... method deleteMapping (line 609) | public boolean deleteMapping( Mapping theMapping ) throws Exception { method putMapping (line 617) | public void putMapping( Mapping theMapping, boolean overwrite ) throws... method describeMapping (line 730) | public String describeMapping( String tableName, String mappingName ) ... method describeMapping (line 744) | public String describeMapping( Mapping aMapping ) throws IOException { method getMapping (line 760) | public Mapping getMapping( String tableName, String mappingName ) thro... method close (line 917) | @Override public void close() throws IOException { method getConnection (line 921) | public HBaseConnection getConnection() { method getTableNameFromVariable (line 925) | public static String getTableNameFromVariable( BaseStepMeta stepMeta, ... method getMappingTableName (line 930) | private String getMappingTableName( String tableName ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/MappingEditor.java class MappingEditor (line 88) | public class MappingEditor extends Composite implements ConfigurationPro... method MappingEditor (line 136) | public MappingEditor( Shell shell, Composite parent, ConfigurationProd... method populateTableWithTupleTemplate (line 445) | private void populateTableWithTupleTemplate( boolean fromOutputStep ) { method populateTableWithIncomingFields (line 510) | private void populateTableWithIncomingFields() { method populateTableCombo (line 601) | private void populateTableCombo( boolean force ) { method addTables (line 659) | private void addTables( Set tableNames, String namespace ) thr... method resetConnection (line 667) | private void resetConnection() throws IOException { method notInitializedMappingAdmin (line 674) | private boolean notInitializedMappingAdmin() { method showConnectionErrorDialog (line 678) | private void showConnectionErrorDialog( Exception ex ) { method deleteMapping (line 683) | private void deleteMapping() { method getMapping (line 745) | public Mapping getMapping( boolean performChecksAndShowGUIErrorDialog,... method getMapping (line 752) | public Mapping getMapping( boolean performChecksAndShowGUIErrorDialog,... method saveMapping (line 1019) | private void saveMapping() { method setMapping (line 1138) | public void setMapping( Mapping mapping ) { method loadTableViewFromMapping (line 1201) | private void loadTableViewFromMapping() { method populateMappingComboAndFamilyStuff (line 1226) | private void populateMappingComboAndFamilyStuff() { method getHBaseService (line 1270) | @Override method getHBaseConnection (line 1276) | public HBaseConnection getHBaseConnection() throws IOException, Cluste... method getCurrentConfiguration (line 1280) | public String getCurrentConfiguration() { method dispose (line 1293) | @Override method setSelectedNamedCluster (line 1302) | public void setSelectedNamedCluster( String name ) { method getSelectedNamedCluster (line 1309) | public NamedCluster getSelectedNamedCluster() { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/MappingUtils.java class MappingUtils (line 37) | public class MappingUtils { method getMappingAdmin (line 55) | public static MappingAdmin getMappingAdmin( ConfigurationProducer cPro... method getMappingAdmin (line 66) | public static MappingAdmin getMappingAdmin( HBaseService hBaseService,... method getMapping (line 72) | public static Mapping getMapping( MappingDefinition mappingDefinition,... method buildNonKeyValueMeta (line 171) | public static HBaseValueMetaInterface buildNonKeyValueMeta( String ali... method isTupleMapping (line 191) | public static boolean isTupleMapping( MappingDefinition mappingDefinit... method isTupleMappingColumn (line 206) | public static boolean isTupleMappingColumn( String columnName ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/output/HBaseOutput.java class HBaseOutput (line 53) | public class HBaseOutput extends BaseStep implements StepInterface { method HBaseOutput (line 61) | public HBaseOutput( StepMeta stepMeta, StepDataInterface stepDataInter... method processRow (line 95) | @Override method init (line 407) | @Override method setStopped (line 426) | @Override FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/output/HBaseOutputData.java class HBaseOutputData (line 40) | public class HBaseOutputData extends BaseStepData implements StepDataInt... method getOutputRowMeta (line 45) | public RowMetaInterface getOutputRowMeta() { method setOutputRowMeta (line 49) | public void setOutputRowMeta( RowMetaInterface rmi ) { method initializeNewPut (line 74) | public static HBasePut initializeNewPut( RowMetaInterface inRowMeta, i... method addColumnsToPut (line 109) | public static void addColumnsToPut( RowMetaInterface inRowMeta, Object... method stringToURL (line 138) | public static URL stringToURL( String pathOrURL ) throws MalformedURLE... FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/output/HBaseOutputDialog.java class HBaseOutputDialog (line 84) | @PluginDialog( id = "HBaseOutput", image = "HBO.svg", pluginType = Plugi... method HBaseOutputDialog (line 142) | public HBaseOutputDialog( Shell parent, Object in, TransMeta tr, Strin... method open (line 155) | public String open() { method cancel (line 656) | protected void cancel() { method ok (line 663) | protected void ok() { method updateMetaConnectionDetails (line 770) | protected void updateMetaConnectionDetails( HBaseOutputMeta meta ) { method getData (line 792) | private void getData() { method getHBaseService (line 830) | @Override public HBaseService getHBaseService() throws ClusterInitiali... method getHBaseConnection (line 835) | @Override public HBaseConnection getHBaseConnection() throws IOExcepti... method setupMappedTableNames (line 865) | private void setupMappedTableNames() { method setupMappingNamesForTable (line 900) | private void setupMappingNamesForTable( boolean quiet ) { method getIncomingFields (line 942) | public RowMetaInterface getIncomingFields() { method getCurrentConfiguration (line 957) | public String getCurrentConfiguration() { method walEnabled (line 962) | public void walEnabled() { method parseNamespaceFromTableName (line 966) | private String parseNamespaceFromTableName( String defaultNamespaceIfN... FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/output/HBaseOutputMeta.java class HBaseOutputMeta (line 74) | @Step( id = "HBaseOutput", image = "HBO.svg", name = "HBaseOutput.Name",... method getNamedClusterService (line 143) | public NamedClusterService getNamedClusterService() { method getNamedClusterServiceLocator (line 147) | public NamedClusterServiceLocator getNamedClusterServiceLocator() { method getRuntimeTestActionService (line 151) | public RuntimeTestActionService getRuntimeTestActionService() { method getRuntimeTester (line 155) | public RuntimeTester getRuntimeTester() { method HBaseOutputMeta (line 159) | public HBaseOutputMeta() { method HBaseOutputMeta (line 164) | public HBaseOutputMeta( NamedClusterService namedClusterService, method getMetastoreService (line 171) | protected synchronized MetastoreLocator getMetastoreService() { method HBaseOutputMeta (line 183) | @VisibleForTesting method setMapping (line 202) | public void setMapping( Mapping m ) { method getMapping (line 211) | public Mapping getMapping() { method setCoreConfigURL (line 215) | public void setCoreConfigURL( String coreConfig ) { method getCoreConfigURL (line 219) | public String getCoreConfigURL() { method setDefaulConfigURL (line 223) | public void setDefaulConfigURL( String defaultConfig ) { method getDefaultConfigURL (line 227) | public String getDefaultConfigURL() { method setTargetTableName (line 231) | public void setTargetTableName( String targetTable ) { method getTargetTableName (line 235) | public String getTargetTableName() { method setTargetMappingName (line 239) | public void setTargetMappingName( String targetMapping ) { method getTargetMappingName (line 243) | public String getTargetMappingName() { method getDeleteRowKey (line 247) | public boolean getDeleteRowKey() { method setDeleteRowKey (line 251) | public void setDeleteRowKey( boolean m_deleteRowKey ) { method setDisableWriteToWAL (line 255) | public void setDisableWriteToWAL( boolean d ) { method getDisableWriteToWAL (line 259) | public boolean getDisableWriteToWAL() { method setWriteBufferSize (line 263) | public void setWriteBufferSize( String size ) { method getWriteBufferSize (line 267) | public String getWriteBufferSize() { method applyInjection (line 271) | void applyInjection( VariableSpace space ) throws KettleException { method getMapping (line 303) | @VisibleForTesting method check (line 308) | public void check( List remarks, TransMeta trans... method getXML (line 334) | @Override method getStep (line 378) | public StepInterface getStep( StepMeta stepMeta, StepDataInterface ste... method getStepData (line 383) | public StepDataInterface getStepData() { method loadXML (line 387) | @Override public void loadXML( Node stepnode, List datab... method readRep (line 434) | @Override public void readRep( Repository rep, IMetaStore metaStore, O... method saveRep (line 466) | @Override public void saveRep( Repository rep, IMetaStore metaStore, O... method setDefault (line 501) | public void setDefault() { method supportsErrorHandling (line 512) | @Override method getNamedCluster (line 517) | public NamedCluster getNamedCluster() { method setNamedCluster (line 521) | public void setNamedCluster( NamedCluster namedCluster ) { method getMappingDefinition (line 525) | public MappingDefinition getMappingDefinition() { method setMappingDefinition (line 529) | public void setMappingDefinition( MappingDefinition mappingDefinition ) { method getService (line 533) | protected HBaseService getService() throws ClusterInitializationExcept... method getServiceStatus (line 550) | public ServiceStatus getServiceStatus() { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/output/KettleRowToHBaseTuple.java class KettleRowToHBaseTuple (line 30) | public class KettleRowToHBaseTuple { method KettleRowToHBaseTuple (line 62) | public KettleRowToHBaseTuple( RowMetaInterface inputRowMeta, Mapping t... method createTuplePut (line 123) | public HBasePut createTuplePut( HBaseTableWriteOperationManager hBaseT... class FieldException (line 166) | public static class FieldException extends Exception { method FieldException (line 170) | public FieldException( Mapping.TupleMapping field ) { method getFieldString (line 175) | public String getFieldString() { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/output/Messages.java class Messages (line 18) | public class Messages { method getString (line 21) | public static String getString( String key ) { method getString (line 25) | public static String getString( String key, String param1 ) { method getString (line 29) | public static String getString( String key, String param1, String para... method getString (line 33) | public static String getString( String key, String param1, String para... method getString (line 37) | public static String getString( String key, String param1, String para... method getString (line 41) | public static String getString( method getString (line 46) | public static String getString( String key, String param1, String para... FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/rowdecoder/HBaseRowDecoder.java class HBaseRowDecoder (line 45) | public class HBaseRowDecoder extends BaseStep implements StepInterface { method HBaseRowDecoder (line 57) | public HBaseRowDecoder( StepMeta stepMeta, StepDataInterface stepDataI... method processRow (line 93) | @Override method init (line 233) | @Override FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/rowdecoder/HBaseRowDecoderData.java class HBaseRowDecoderData (line 25) | public class HBaseRowDecoderData extends BaseStepData implements StepDat... method getOutputRowMeta (line 35) | public RowMetaInterface getOutputRowMeta() { method setOutputRowMeta (line 45) | public void setOutputRowMeta( RowMetaInterface rmi ) { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/rowdecoder/HBaseRowDecoderDialog.java class HBaseRowDecoderDialog (line 67) | @PluginDialog( id = "HBaseRowDecoder", image = "HBRD.svg", pluginType = ... method HBaseRowDecoderDialog (line 95) | public HBaseRowDecoderDialog( Shell parent, Object in, TransMeta tr, S... method open (line 111) | public String open() { method cancel (line 315) | protected void cancel() { method ok (line 322) | protected void ok() { method getData (line 367) | protected void getData() { method populateFieldsCombo (line 382) | private void populateFieldsCombo() { FILE: kettle-plugins/hbase/core/src/main/java/org/pentaho/big/data/kettle/plugins/hbase/rowdecoder/HBaseRowDecoderMeta.java class HBaseRowDecoderMeta (line 82) | @Step( id = "HBaseRowDecoder", image = "HBRD.svg", name = "HBaseRowDecod... method HBaseRowDecoderMeta (line 116) | public HBaseRowDecoderMeta() { method HBaseRowDecoderMeta (line 121) | public HBaseRowDecoderMeta( NamedClusterServiceLocator namedClusterSer... method getMetastoreLocators (line 127) | public synchronized MetastoreLocator getMetastoreLocators() { method HBaseRowDecoderMeta (line 139) | @VisibleForTesting method setNamedCluster (line 156) | public void setNamedCluster( NamedCluster namedCluster ) { method getNamedCluster (line 163) | public NamedCluster getNamedCluster() { method setIncomingKeyField (line 174) | public void setIncomingKeyField( String inKey ) { method getIncomingKeyField (line 183) | public String getIncomingKeyField() { method setIncomingResultField (line 193) | public void setIncomingResultField( String inResult ) { method getIncomingResultField (line 202) | public String getIncomingResultField() { method setMapping (line 212) | public void setMapping( Mapping m ) { method getMapping (line 221) | public Mapping getMapping() { method getMappingDefinition (line 225) | public MappingDefinition getMappingDefinition() { method setMappingDefinition (line 229) | public void setMappingDefinition( MappingDefinition mappingDefinition ) { method setDefault (line 233) | public void setDefault() { method getFields (line 239) | @Override method check (line 275) | public void check( List remarks, TransMeta trans... method applyInjection (line 301) | void applyInjection() throws KettleException { method getStep (line 317) | public StepInterface getStep( StepMeta stepMeta, StepDataInterface ste... method getStepData (line 323) | public StepDataInterface getStepData() { method getXML (line 327) | @Override method loadXML (line 352) | public void loadXML( Node stepnode, List databases, IMet... method readRep (line 372) | public void readRep( Repository rep, IMetaStore metaStore, ObjectId id... method saveRep (line 389) | public void saveRep( Repository rep, IMetaStore metaStore, ObjectId id... method getDialog (line 418) | public StepDialogInterface getDialog( Shell shell, StepMetaInterface m... FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/HbaseUtilTest.java class HbaseUtilTest (line 21) | public class HbaseUtilTest { method testParseNamespaceFromTableName (line 23) | @Test method testParseQualifierFromTableName (line 31) | @Test method testExpandTableName (line 39) | @Test method testIllegalArgsInExpandTableName (line 49) | @Test(expected = IllegalArgumentException.class) method expandLegacyTableNameOnLoad (line 54) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/LogInjector.java class LogInjector (line 23) | public class LogInjector { method setMockForLoggingBuffer (line 25) | public static LoggingBuffer setMockForLoggingBuffer() throws NoSuchFie... FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/NamedClusterLoadSaveUtilTest.java class NamedClusterLoadSaveUtilTest (line 42) | public class NamedClusterLoadSaveUtilTest { method setUp (line 71) | @Before method testLoadClusterConfigXML_WithoutClusterName (line 92) | @Test method testLoadClusterConfigXML_WithClusterName (line 100) | @Test method testLoadClusterConfigRepo_WithoutClusterName (line 108) | @Test method testLoadClusterConfigRepo_WithClusterName (line 118) | @Test method testGetXml_WithoutClusterName (line 128) | @Test method testGetXml_WithClusterName (line 139) | @Test method testGetXml_WithoutZooKeeper (line 152) | @Test method testGetXml_readFromMetastore (line 163) | @Test method testSaveRep_WithoutClusterName (line 179) | @Test method testSaveRep_WithClusterName (line 189) | @Test method testSaveRep_WithoutZooKeeper (line 202) | @Test method testSaveRep_readFromMetastore (line 213) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/input/HBaseInputMetaInjectionTest.java class HBaseInputMetaInjectionTest (line 27) | public class HBaseInputMetaInjectionTest extends BaseMetadataInjectionTe... method setup (line 29) | @Before method test (line 40) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/input/HBaseInputMetaTest.java class HBaseInputMetaTest (line 65) | @RunWith( MockitoJUnitRunner.class ) method testLogSuccessfulForGetXml (line 80) | @Test method testApplyInjectionDefinitionsExists (line 95) | @SuppressWarnings( "unchecked" ) method testApplyInjectionDefinitionsNull (line 118) | @Test method testLoadXmlDoesntBubleUpException (line 133) | @Test method testLoadXmlServiceStatusOk (line 156) | @Test method testReadRepDoesntBubleUpException (line 176) | @Test method testReadRepServiceStatusOk (line 192) | @Test method testLoadingAELMappingFromStepNode (line 206) | @Test method getMappingNode (line 218) | private Node getMappingNode() throws IOException, ParserConfigurationE... FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/MappingAdminTest.java class MappingAdminTest (line 67) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 88) | @Before method testGetTableNameFromVariable_whenVariableValueExists (line 101) | @Test method testGetTableNameFromVariable_whenNoVariable (line 113) | @Test method setAndGetMappingTableName (line 125) | @Test method createMappingTable (line 131) | @Test method createMappingTableWhenExists (line 141) | @Test( expected = IOException.class ) method mappingExists (line 150) | @Test method testMappingExistsNegative (line 156) | @Test method getMappedTables (line 162) | @Test method setupMappingStructure (line 172) | private void setupMappingStructure() throws Exception { method getMappingNames (line 219) | @Test method getMapping (line 228) | @Test method deleteMapping (line 244) | @Test method putMapping (line 255) | @Test method describeMapping (line 268) | @Test method close (line 279) | @Test method getConnection (line 285) | @Test class ByteArrayComparator (line 290) | static class ByteArrayComparator implements Comparator { method compare (line 291) | @Override FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/MappingUtilsTest.java class MappingUtilsTest (line 57) | public class MappingUtilsTest { method testGetMappingAdmin_NoException (line 84) | @Test method testGetMappingAdmin_ClusterInitializationExceptionToHBaseConnectionException (line 97) | @Test method testGetMappingAdmin_IOExceptionToHBaseConnectionException (line 111) | @Test method testIsTupleMappingColumn (line 124) | @Test method testIsTupleMappingColumn_NotTupleColumn (line 132) | @Test method testIsTupleMapping (line 138) | @Test method testIsTupleMapping_NoTupleMapping (line 147) | @Test method testGetMappingAdmin (line 156) | @Test method testBuildNonKeyValueMeta (line 168) | @Test method testGetMapping_UndefinedMappingName (line 189) | @Test( expected = KettleException.class ) method testGetMapping_UndefinedColumns (line 197) | @Test( expected = KettleException.class ) method testGetMapping_NoKeyDefined (line 205) | @Test( expected = KettleException.class ) method testGetMapping_TwoKeysDefined (line 211) | @Test( expected = KettleException.class ) method testGetMapping_keyColumnWithoutAlias (line 217) | @Test( expected = KettleException.class ) method testGetMapping_keyColumnWithoutType (line 227) | @Test( expected = KettleException.class ) method testGetMapping_columnWithoutFamilyName (line 237) | @Test( expected = KettleException.class ) method testGetMapping_columnWithoutColumnName (line 251) | @Test( expected = KettleException.class ) method testGetMapping (line 265) | @Test method mockHBaseService (line 294) | private static HBaseService mockHBaseService() { method buildMappingDefinitionWithoutKey (line 323) | private static MappingDefinition buildMappingDefinitionWithoutKey() { method buildMappingDefinitionWithTwoKeys (line 334) | private static MappingDefinition buildMappingDefinitionWithTwoKeys() { method buildMappingDefinitionForGetMapping (line 353) | private static MappingDefinition buildMappingDefinitionForGetMapping() { method buildKeyColumn (line 365) | private static MappingColumn buildKeyColumn( String alias, String type... method buildNoKeyColumn (line 373) | public static MappingColumn buildNoKeyColumn( String alias, String fam... method createMappingDefinition (line 382) | private static MappingDefinition createMappingDefinition() { method buildTupleMapping (line 389) | private static List buildTupleMapping() { method buildNoTupleMapping (line 409) | private static List buildNoTupleMapping() { FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/mapping/MockHBaseByteConverterUsingJavaByteBuffer.java class MockHBaseByteConverterUsingJavaByteBuffer (line 24) | public class MockHBaseByteConverterUsingJavaByteBuffer implements HBaseB... method getSizeOfFloat (line 26) | @Override public int getSizeOfFloat() { method getSizeOfDouble (line 30) | @Override public int getSizeOfDouble() { method getSizeOfInt (line 34) | @Override public int getSizeOfInt() { method getSizeOfLong (line 38) | @Override public int getSizeOfLong() { method getSizeOfShort (line 42) | @Override public int getSizeOfShort() { method getSizeOfByte (line 46) | @Override public int getSizeOfByte() { method toBytes (line 50) | @Override public byte[] toBytes( String aString ) { method toBytes (line 54) | @Override public byte[] toBytes( int anInt ) { method toBytes (line 58) | @Override public byte[] toBytes( long aLong ) { method toBytes (line 62) | @Override public byte[] toBytes( float aFloat ) { method toBytes (line 66) | @Override public byte[] toBytes( double aDouble ) { method toBytesBinary (line 70) | @Override public byte[] toBytesBinary( String value ) { method toString (line 74) | @Override public String toString( byte[] value ) { method toLong (line 78) | @Override public long toLong( byte[] value ) { method toInt (line 82) | @Override public int toInt( byte[] value ) { method toFloat (line 86) | @Override public float toFloat( byte[] value ) { method toDouble (line 90) | @Override public double toDouble( byte[] value ) { method toShort (line 94) | @Override public short toShort( byte[] value ) { FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/output/HBaseOutputMetaInjectionTest.java class HBaseOutputMetaInjectionTest (line 27) | public class HBaseOutputMetaInjectionTest extends BaseMetadataInjectionT... method setup (line 29) | @Before method test (line 41) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/output/HBaseOutputMetaTest.java class HBaseOutputMetaTest (line 65) | @RunWith( MockitoJUnitRunner.class ) method testReadRepSetsNamedCluster (line 86) | @Test method testLogSuccessfulForGetXml (line 105) | @Test method testApplyInjectionDefinitionExists (line 119) | @Test method testApplyInjectionDefinitionNull (line 134) | @Test method testLoadXmlDoesntBubleUpException (line 145) | @Test method testLoadXmlServiceStatusOk (line 169) | @Test method testReadRepDoesntBubleUpException (line 191) | @Test method testReadRepServiceStatusOk (line 208) | @Test method testInjectWithEmbeddedMetastoreProviderKey (line 223) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/output/KettleRowToHBaseTupleTest.java class KettleRowToHBaseTupleTest (line 44) | @RunWith( MockitoJUnitRunner.class ) method setup (line 49) | @Before method testRowConversion (line 56) | @Test method testMissingValues (line 136) | @Test method testException (line 179) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/rowdecoder/HBaseRowDecoderMetaInjectionTest.java class HBaseRowDecoderMetaInjectionTest (line 27) | public class HBaseRowDecoderMetaInjectionTest extends BaseMetadataInject... method setup (line 29) | @Before method test (line 41) | @Test FILE: kettle-plugins/hbase/core/src/test/java/org/pentaho/big/data/kettle/plugins/hbase/rowdecoder/HBaseRowDecoderMetaTest.java class HBaseRowDecoderMetaTest (line 41) | public class HBaseRowDecoderMetaTest { method setup (line 55) | @Before method tearDown (line 63) | @After method testRowMetaIsFilled_WhenMappingHasTableNameAndMappingName (line 68) | @Test method testRowMetaIsFilled_WhenMappingHasNoMappingName (line 78) | @Test method assertRowMetaIsFilledWithFields (line 88) | private void assertRowMetaIsFilledWithFields() { method getMapping (line 96) | private Mapping getMapping( String tableName, String mappingName ) thr... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/HdfsLifecycleListener.java class HdfsLifecycleListener (line 36) | @LifecyclePlugin( id = "HdfsLifecycleListener", name = "HdfsLifecycleLis... method HdfsLifecycleListener (line 50) | public HdfsLifecycleListener() { method HdfsLifecycleListener (line 56) | @Deprecated method onStart (line 65) | @Override public void onStart( LifeEventHandler lifeEventHandler ) thr... method onExit (line 82) | @Override public void onExit( LifeEventHandler lifeEventHandler ) thro... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/job/JobEntryHadoopCopyFiles.java class JobEntryHadoopCopyFiles (line 33) | @JobEntry( id = "HadoopCopyFilesPlugin", image = "HDM.svg", name = "Hado... method JobEntryHadoopCopyFiles (line 45) | public JobEntryHadoopCopyFiles() { method JobEntryHadoopCopyFiles (line 64) | public JobEntryHadoopCopyFiles( NamedClusterService namedClusterService, method loadURL (line 72) | @Override method saveURL (line 114) | @Override method getVariables (line 121) | @VisibleForTesting method getNamedClusterService (line 126) | public NamedClusterService getNamedClusterService() { method getRuntimeTestActionService (line 130) | public RuntimeTestActionService getRuntimeTestActionService() { method getRuntimeTester (line 134) | public RuntimeTester getRuntimeTester() { FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/job/JobEntryHadoopCopyFilesDialog.java class JobEntryHadoopCopyFilesDialog (line 58) | @PluginDialog( id = "HadoopCopyFilesPlugin", image = "HDM.svg", pluginTy... method JobEntryHadoopCopyFilesDialog (line 72) | public JobEntryHadoopCopyFilesDialog( Shell parent, JobEntryInterface ... method initUI (line 84) | protected void initUI() { method getFileSelectionAdapter (line 89) | protected SelectionAdapter getFileSelectionAdapter() { method getData (line 102) | public void getData() { method ok (line 176) | protected void ok() { method setSelectedFile (line 224) | private FileObject setSelectedFile( String path, String clusterName ) { method showMessageAndLog (line 356) | private void showMessageAndLog( String title, String message, String m... method getImage (line 364) | protected Image getImage() { method showFileButtons (line 369) | public boolean showFileButtons() { method setComboValues (line 373) | protected void setComboValues( ColumnInfo colInfo ) { FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileInputDialog.java class HadoopFileInputDialog (line 123) | @PluginDialog( id = "HadoopFileInputPlugin", image = "HDI.svg", pluginTy... method HadoopFileInputDialog (line 291) | public HadoopFileInputDialog( Shell parent, Object in, TransMeta trans... method open (line 299) | @Override method getFriendlyURIs (line 472) | protected String[] getFriendlyURIs( String[] files ) { method showFiles (line 489) | private void showFiles() { method addFilesTab (line 506) | private void addFilesTab() { method addContentTab (line 742) | private void addContentTab() { method setLocales (line 1375) | protected void setLocales() { method addErrorTab (line 1384) | private void addErrorTab() { method addFiltersTabs (line 1744) | private void addFiltersTabs() { method addFieldsTabs (line 1793) | private void addFieldsTabs() { method setFlags (line 1866) | public void setFlags() { method getData (line 1941) | public void getData( HadoopFileInputMeta meta ) { method getFieldsData (line 2096) | private void getFieldsData( HadoopFileInputMeta in, boolean insertAtTo... method setEncodings (line 2167) | private void setEncodings() { method cancel (line 2188) | private void cancel() { method ok (line 2194) | private void ok() { method getInfo (line 2202) | private void getInfo( HadoopFileInputMeta meta ) { method get (line 2322) | private void get() { method getCSV (line 2331) | private void getCSV() { method guessPrecision (line 2466) | public static final int guessPrecision( double d ) { method guessIntLength (line 2484) | public static final int guessIntLength( double d ) { method guessLength (line 2497) | public static final int guessLength( double d ) { method preview (line 2512) | private void preview() { method first (line 2565) | private void first( boolean skipHeaders ) { method getFirst (line 2611) | private List getFirst( int nrlines, boolean skipHeaders ) thro... method getFixed (line 2685) | private void getFixed() { method getFields (line 2755) | private Vector getFields( HadoopFileInput... method toString (line 2821) | @Override method getFileDirectoryListener (line 2826) | private SelectionAdapter getFileDirectoryListener() { method setComboValues (line 2986) | protected void setComboValues( ColumnInfo colInfo ) { method getInputStream (line 2997) | private InputStream getInputStream( HadoopFileInputMeta meta, FileInpu... method getInputStreamReader (line 3007) | private InputStreamReader getInputStreamReader( HadoopFileInputMeta me... method getBufferedInputStreamReader (line 3017) | private BufferedInputStreamReader getBufferedInputStreamReader( Hadoop... method showMessageAndLog (line 3022) | private void showMessageAndLog( String title, String message, String m... method getLine (line 3030) | private String getLine( HadoopFileInputMeta meta, FileInputList textFi... class DirectoryBrowserAdapter (line 3049) | private class DirectoryBrowserAdapter extends SelectionAdapter { method DirectoryBrowserAdapter (line 3057) | public DirectoryBrowserAdapter( Text widget ) { method widgetSelected (line 3061) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileInputMeta.java class HadoopFileInputMeta (line 54) | @Step( id = "HadoopFileInputPlugin", image = "HDI.svg", name = "HadoopFi... type EncryptDirection (line 79) | enum EncryptDirection { ENCRYPT, DECRYPT } method HadoopFileInputMeta (line 87) | public HadoopFileInputMeta() { method HadoopFileInputMeta (line 91) | public HadoopFileInputMeta( NamedClusterService namedClusterService, H... method loadSource (line 97) | @Override method saveSource (line 112) | @Override method loadSourceRep (line 121) | @Override method saveSourceRep (line 130) | @Override method loadUrl (line 139) | public String loadUrl( String url, String ncName, IMetaStore metastore... method setNamedClusterURLMapping (line 157) | public void setNamedClusterURLMapping( Map mappings ) { method getNamedClusterURLMapping (line 161) | public Map getNamedClusterURLMapping() { method getClusterName (line 165) | @Override method getFriendlyUri (line 177) | private URI getFriendlyUri( String url ) throws URISyntaxException { method getClusterNameBy (line 183) | public String getClusterNameBy( String url ) { method getUrlPath (line 187) | public String getUrlPath( String incomingURL ) { method setVariableSpace (line 197) | public void setVariableSpace( VariableSpace variableSpace ) { method getNamedClusterService (line 201) | public NamedClusterService getNamedClusterService() { method getFileInputList (line 205) | @Override method canAccessHdfs (line 241) | protected boolean canAccessHdfs( String fileName, boolean checkHdfs ) { method createFileList (line 259) | FileInputList createFileList( VariableSpace space ) { method createFileList (line 266) | FileInputList createFileList( Bowl bowl, VariableSpace space ) { method encryptDecryptPassword (line 271) | protected String encryptDecryptPassword( String source, EncryptDirecti... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileMeta.java type HadoopFileMeta (line 24) | public interface HadoopFileMeta { method getUrlHostName (line 26) | default String getUrlHostName( final String incomingURL ) { method getUrlFileName (line 35) | default FileName getUrlFileName( final String incomingURL ) { method getUrlPath (line 46) | String getUrlPath( final String incomingURL ); method getClusterName (line 48) | String getClusterName( final String incomingURL ); FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileOutputDialog.java class HadoopFileOutputDialog (line 91) | @PluginDialog( id = "HadoopFileOutputPlugin", image = "HDO.svg", pluginT... method HadoopFileOutputDialog (line 235) | public HadoopFileOutputDialog( Shell parent, Object in, TransMeta tran... method open (line 244) | public String open() { method fillWithSupportedDateFormats (line 1316) | protected void fillWithSupportedDateFormats( CCombo combo, String[] da... method activeFileNameField (line 1325) | private void activeFileNameField() { method setComboBoxes (line 1366) | protected void setComboBoxes() { method setDateTimeFormat (line 1383) | private void setDateTimeFormat() { method setEncodings (line 1397) | private void setEncodings() { method getFields (line 1418) | private void getFields() { method getData (line 1441) | public void getData() { method cancel (line 1549) | private void cancel() { method getInfo (line 1557) | private void getInfo( HadoopFileOutputMeta tfoi ) { method ok (line 1621) | private void ok() { method get (line 1632) | private void get() { method setMinimalWidth (line 1676) | public void setMinimalWidth() { method toString (line 1709) | public String toString() { method enableParentFolder (line 1713) | private void enableParentFolder() { method getUrlPath (line 1718) | public static String getUrlPath( String incomingURL ) { method showMessageAndLog (line 1733) | private void showMessageAndLog( String title, String message, String m... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileOutputMeta.java class HadoopFileOutputMeta (line 42) | @Step( id = "HadoopFileOutputPlugin", image = "HDO.svg", name = "HadoopF... method HadoopFileOutputMeta (line 63) | public HadoopFileOutputMeta() { method HadoopFileOutputMeta (line 69) | public HadoopFileOutputMeta( NamedClusterService namedClusterService, method setDefault (line 76) | @Override method getSourceConfigurationName (line 86) | public String getSourceConfigurationName() { method setSourceConfigurationName (line 90) | public void setSourceConfigurationName( String ncName ) { method loadSource (line 94) | protected String loadSource( Node stepnode, IMetaStore metastore ) { method getProcessedUrl (line 103) | protected String getProcessedUrl( IMetaStore metastore, String url ) { method getClusterName (line 125) | @Override method getNamedCluster (line 132) | public NamedCluster getNamedCluster() { method getUrlPath (line 143) | public String getUrlPath( String incomingURL ) { method saveSource (line 147) | protected void saveSource( StringBuilder retVal, String fileName ) { method getXML (line 152) | @Override method loadSourceRep (line 163) | protected String loadSourceRep( Repository rep, ObjectId id_step, IMe... method saveSourceRep (line 171) | protected void saveSourceRep( Repository rep, ObjectId id_transformati... method getNamedClusterService (line 177) | public NamedClusterService getNamedClusterService() { method getRuntimeTester (line 181) | public RuntimeTester getRuntimeTester() { method getRuntimeTestActionService (line 185) | public RuntimeTestActionService getRuntimeTestActionService() { method exportResources (line 189) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopInputFileSelectionAdapter.java class HadoopInputFileSelectionAdapter (line 21) | public class HadoopInputFileSelectionAdapter extends SelectionAdapterFil... method HadoopInputFileSelectionAdapter (line 23) | public HadoopInputFileSelectionAdapter( LogChannelInterface log, Table... method getText (line 28) | @Override method setText (line 33) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopBaseStepAnalyzer.java class HadoopBaseStepAnalyzer (line 34) | public abstract class HadoopBaseStepAnalyzer ext... method normalizeFilePath (line 36) | @Override protected boolean normalizeFilePath() { method getUsedFields (line 40) | @Override protected Set getUsedFields( final M meta ) { method getResourceInputNodeType (line 48) | @Override public String getResourceInputNodeType() { method getResourceOutputNodeType (line 52) | @Override public String getResourceOutputNodeType() { method getSupportedSteps (line 56) | @Override method getMetaClass (line 65) | public abstract Class getMetaClass(); method setObjectFactory (line 68) | protected void setObjectFactory( IMetaverseObjectFactory factory ) { method createResourceNode (line 72) | @Override public IMetaverseNode createResourceNode( final IExternalRes... method createResourceNode (line 76) | @Override public IMetaverseNode createResourceNode( final M meta, fina... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopFileInputExternalResourceConsumer.java class HadoopFileInputExternalResourceConsumer (line 20) | public class HadoopFileInputExternalResourceConsumer method getMetaClass (line 23) | @Override method isDataDriven (line 28) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopFileInputStepAnalyzer.java class HadoopFileInputStepAnalyzer (line 21) | public class HadoopFileInputStepAnalyzer extends HadoopBaseStepAnalyzer<... method getMetaClass (line 23) | @Override method isOutput (line 28) | @Override public boolean isOutput() { method isInput (line 32) | @Override public boolean isInput() { method customAnalyze (line 36) | @Override method newInstance (line 82) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopFileOutputExternalResourceConsumer.java class HadoopFileOutputExternalResourceConsumer (line 20) | public class HadoopFileOutputExternalResourceConsumer method getMetaClass (line 23) | @Override method isDataDriven (line 28) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopFileOutputStepAnalyzer.java class HadoopFileOutputStepAnalyzer (line 21) | public class HadoopFileOutputStepAnalyzer extends HadoopBaseStepAnalyzer... method getMetaClass (line 23) | @Override method isOutput (line 28) | @Override public boolean isOutput() { method isInput (line 32) | @Override public boolean isInput() { method customAnalyze (line 36) | @Override method newInstance (line 69) | @Override FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/HadoopVfsConnection.java class HadoopVfsConnection (line 25) | public class HadoopVfsConnection { method HadoopVfsConnection (line 38) | public HadoopVfsConnection( String ncHostname, String ncPort, String n... method HadoopVfsConnection (line 46) | public HadoopVfsConnection() { method HadoopVfsConnection (line 50) | public HadoopVfsConnection( NamedCluster nCluster, VariableSpace vs ) { method getConnectionString (line 60) | public String getConnectionString( String schemeName ) { method loadNamedCluster (line 77) | private void loadNamedCluster( NamedCluster nCluster, VariableSpace vs... method setCustomParameters (line 91) | public void setCustomParameters( Props pr ) { method getHostname (line 98) | public String getHostname() { method getPort (line 102) | public String getPort() { method getUsername (line 106) | public String getUsername() { method getPassword (line 110) | public String getPassword() { FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/HadoopVfsFileChooserDialog.java class HadoopVfsFileChooserDialog (line 43) | public class HadoopVfsFileChooserDialog extends CustomVfsUiPanel { method HadoopVfsFileChooserDialog (line 71) | public HadoopVfsFileChooserDialog( String schemeName, String displayNa... method createConnectionPanel (line 92) | private void createConnectionPanel() { method initializeConnectionPanel (line 123) | public void initializeConnectionPanel( FileObject file ) { method showMessageAndLog (line 131) | private void showMessageAndLog( String title, String message, String m... method getVariableSpace (line 139) | public VariableSpace getVariableSpace() { method getNamedClusterWidget (line 149) | public NamedClusterWidgetImpl getNamedClusterWidget() { method setNamedClusterWidget (line 153) | protected void setNamedClusterWidget( NamedClusterWidgetImpl namedClus... method setNamedCluster (line 157) | public void setNamedCluster( String namedCluster ) { method activate (line 161) | public void activate() { method connect (line 171) | public void connect() { method resolveFile (line 193) | public FileObject resolveFile( String fileUri ) throws FileSystemExcep... method resolveFile (line 203) | public FileObject resolveFile( String fileUri, FileSystemOptions opts ... method getFileSystemOptions (line 212) | protected FileSystemOptions getFileSystemOptions() throws FileSystemEx... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/MapRFSFileChooserDialog.java class MapRFSFileChooserDialog (line 28) | public class MapRFSFileChooserDialog extends CustomVfsUiPanel { method MapRFSFileChooserDialog (line 32) | public MapRFSFileChooserDialog( String schemeName, String displayName,... method activate (line 37) | public void activate() { method resolveFile (line 52) | public FileObject resolveFile( String fileUri ) throws FileSystemExcep... method resolveFile (line 62) | public FileObject resolveFile( String fileUri, FileSystemOptions opts ... method getFileSystemOptions (line 71) | protected FileSystemOptions getFileSystemOptions() throws FileSystemEx... method getVariableSpace (line 76) | private VariableSpace getVariableSpace() { FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/NamedClusterVfsFileChooserDialog.java class NamedClusterVfsFileChooserDialog (line 43) | public class NamedClusterVfsFileChooserDialog extends CustomVfsUiPanel { method NamedClusterVfsFileChooserDialog (line 71) | public NamedClusterVfsFileChooserDialog( String schemeName, String dis... method createConnectionPanel (line 94) | private void createConnectionPanel() { method initializeConnectionPanel (line 130) | public void initializeConnectionPanel( FileObject file ) { method showMessageAndLog (line 138) | private void showMessageAndLog( String title, String message, String m... method getVariableSpace (line 146) | public VariableSpace getVariableSpace() { method getNamedClusterWidget (line 156) | public NamedClusterWidgetImpl getNamedClusterWidget() { method setNamedClusterWidget (line 160) | protected void setNamedClusterWidget( NamedClusterWidgetImpl namedClus... method setNamedCluster (line 164) | public void setNamedCluster( String namedCluster ) { method activate (line 168) | @Override method connect (line 179) | public void connect() { method resolveFile (line 204) | @Override method resolveFile (line 216) | @Override method getFileSystemOptions (line 230) | protected FileSystemOptions getFileSystemOptions() throws FileSystemEx... FILE: kettle-plugins/hdfs/core/src/main/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/Schemes.java class Schemes (line 19) | public class Schemes { FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/job/JobEntryHadoopCopyFilesLoadSaveTest.java class JobEntryHadoopCopyFilesLoadSaveTest (line 35) | public class JobEntryHadoopCopyFilesLoadSaveTest { method setup (line 41) | @Before method testLoadSave (line 51) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/job/JobEntryHadoopCopyFilesTest.java class JobEntryHadoopCopyFilesTest (line 39) | public class JobEntryHadoopCopyFilesTest { method setup (line 49) | @Before method testLoadUrlNullNcName (line 64) | @Test method testLoadUrlNull (line 72) | @Test method testLoadUrlNotNullForNotCluster (line 80) | @Test method testLoadUrlMapRNull (line 90) | @Test method testLoadUrlMapRNotNullNoPrefix (line 98) | @Test method testLoadUrlMapRNotNullPrefix (line 110) | @Test method testLoadUrlNotMapR (line 122) | @Test method testLoadUrlHdfsEMPTY_SOURCE_URL (line 134) | @Test method testLoadUrlHdfsEMPTY_DEST_URL (line 149) | @Test method testSaveUrlMappingsKeyMisses (line 164) | @Test method testSaveUrlMappingsKeyHits (line 178) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileInputDialogTest.java class HadoopFileInputDialogTest (line 23) | public class HadoopFileInputDialogTest { method getFriendlyURIsUnsecure (line 25) | @Test method getFriendlyURIsSecure (line 43) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileInputMetaTest.java class HadoopFileInputMetaTest (line 69) | public class HadoopFileInputMetaTest { method setUp (line 80) | @Before method testSaveSourceCalledFromGetXml (line 92) | @Test method initHadoopMetaInput (line 119) | private HadoopFileInputMeta initHadoopMetaInput( HadoopFileInputMeta h... method loadNodeFromXml (line 132) | public Node loadNodeFromXml( String fileName ) throws Exception { method testLoadSourceCalledFromLoadXml (line 142) | @Test method testLoadSourceRepForUrlRefresh (line 155) | @Test method testGetFileInputList (line 170) | @Test method testGetUrl (line 191) | @Test method testEncryption (line 213) | @Test method testNoPassword (line 223) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileOutputDialogTest.java class HadoopFileOutputDialogTest (line 41) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 50) | @Before method cleanup (line 58) | @After method testGetUrlPathHdfsPrefix (line 65) | @Test method testGetUrlPathMapRPRefix (line 76) | @Test method testGetUrlPathSpecialPrefix (line 87) | @Test method testGetUrlPathNoPrefix (line 98) | @Test method testGetUrlPathVariablePrefix (line 104) | @Test method testGetUrlPathRootPath (line 110) | @Test method testGetUrlPathRootPathWithoutSlash (line 120) | @Test method testFillWithSupportedDateFormats (line 130) | @Test method buildSchemeAnswer (line 147) | private Answer buildSchemeAnswer( String prefix, String buildPath ) { method buildExtractSchemeMocks (line 156) | private void buildExtractSchemeMocks( String prefix, String fullPath, ... FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/HadoopFileOutputMetaTest.java class HadoopFileOutputMetaTest (line 57) | public class HadoopFileOutputMetaTest { method setUp (line 71) | @Before method testProcessedUrl (line 79) | @Test method testProcessedUrlUsingEmbeddedCluster (line 100) | @Test method testSaveSourceCalledFromGetXml (line 122) | @Test method getChildElementByTagName (line 141) | public Node getChildElementByTagName( String fileName ) throws Excepti... method getChildElementByTagName (line 151) | public static Element getChildElementByTagName( Element element, Strin... method testLoadSourceCalledFromReadData (line 155) | @Test method testLoadSourceRepForUrlRefresh (line 170) | @Test method testSaveSourceCalledFromGetXmlWithEmbeddedCluster (line 189) | @Test method getDocumentFromString (line 213) | public static Document getDocumentFromString( String xmlStep, SAXBuild... FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopBaseStepAnalyzerTest.java class HadoopBaseStepAnalyzerTest (line 40) | public abstract class HadoopBaseStepAnalyzerTest getMetaClass(); method testCreateResourceNode (line 99) | @Ignore FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopFileInputStepAnalyzerTest.java class HadoopFileInputStepAnalyzerTest (line 25) | @RunWith(MockitoJUnitRunner.Silent.class) method getAnalyzer (line 32) | @Override method getMetaMock (line 37) | @Override method getMetaClass (line 42) | @Override method testIsOutput (line 47) | @Test method testIsInput (line 52) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/trans/analyzer/HadoopFileOutputStepAnalyzerTest.java class HadoopFileOutputStepAnalyzerTest (line 25) | @RunWith(MockitoJUnitRunner.Silent.class) method getAnalyzer (line 32) | @Override method getMetaMock (line 37) | @Override method getMetaClass (line 42) | @Override method testIsOutput (line 47) | @Test method testIsInput (line 52) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/HadoopVfsConnectionTest.java class HadoopVfsConnectionTest (line 29) | public class HadoopVfsConnectionTest { method testDefaultConstructor (line 51) | @Test method testConstructorWithParameters (line 60) | @Test method testConstructorWithNamedClusterAsParameter (line 69) | @Test method testConstructorWithNamedClusterAsParameter_HostNameNull (line 78) | @Test method testConstructorWithNamedClusterAsParameter_PortNull (line 94) | @Test method testConstructorWithNamedClusterAsParameter_UserNull (line 110) | @Test method testConstructorWithNamedClusterAsParameter_PasswordNull (line 126) | @Test method testConstructorWithNamedClusterNullAsParameter (line 141) | @Test method testGetConnectionStringForHDFSScheme (line 150) | @Test method testGetConnectionStringForNullInputScheme (line 156) | @Test method testGetConnectionStringForEmptyInputScheme (line 162) | @Test method getTestNamedCluster (line 168) | private NamedCluster getTestNamedCluster() { method tesSetSustomParameters (line 178) | @Test FILE: kettle-plugins/hdfs/core/src/test/java/org/pentaho/big/data/kettle/plugins/hdfs/vfs/HadoopVfsFileChooserDialogTest.java class HadoopVfsFileChooserDialogTest (line 38) | public class HadoopVfsFileChooserDialogTest { method Initialization (line 44) | @Before method finalize (line 49) | @After method testActivate (line 54) | @Test class NamedClusterWidgetImplExtend (line 87) | private class NamedClusterWidgetImplExtend extends NamedClusterWidgetI... method NamedClusterWidgetImplExtend (line 88) | public NamedClusterWidgetImplExtend( Composite parent, boolean showL... method getNamedClusterNames (line 93) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/apache/hadoop/hive/jdbc/HiveDriver.java class HiveDriver (line 22) | public class HiveDriver extends DummyDriver { FILE: kettle-plugins/hive/core/src/main/java/org/apache/hive/jdbc/HiveDriver.java class HiveDriver (line 22) | public class HiveDriver extends DummyDriver { FILE: kettle-plugins/hive/core/src/main/java/org/apache/hive/jdbc/HiveSimbaDriver.java class HiveSimbaDriver (line 22) | public class HiveSimbaDriver extends DummyDriver { FILE: kettle-plugins/hive/core/src/main/java/org/apache/hive/jdbc/ImpalaDriver.java class ImpalaDriver (line 22) | public class ImpalaDriver extends DummyDriver { FILE: kettle-plugins/hive/core/src/main/java/org/apache/hive/jdbc/ImpalaSimbaDriver.java class ImpalaSimbaDriver (line 22) | public class ImpalaSimbaDriver extends DummyDriver { FILE: kettle-plugins/hive/core/src/main/java/org/apache/hive/jdbc/SparkSqlSimbaDriver.java class SparkSqlSimbaDriver (line 22) | public class SparkSqlSimbaDriver extends DummyDriver { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/Activator.java class Activator (line 31) | public class Activator implements BundleActivator { method start (line 40) | @Override public void start( BundleContext context ) throws Exception { method stop (line 47) | @Override public void stop( BundleContext context ) throws Exception { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/BaseSimbaDatabaseMeta.java class BaseSimbaDatabaseMeta (line 27) | abstract class BaseSimbaDatabaseMeta extends Hive2DatabaseMeta { method BaseSimbaDatabaseMeta (line 31) | BaseSimbaDatabaseMeta( DriverLocator driverLocator, NamedClusterServic... method BaseSimbaDatabaseMeta (line 36) | BaseSimbaDatabaseMeta( DriverLocator driverLocator, NamedClusterServic... method getJdbcPrefix (line 40) | protected abstract String getJdbcPrefix(); method getDriverClass (line 42) | @Override method getAccessTypeList (line 45) | @Override public int[] getAccessTypeList() { method getURL (line 49) | @Override public String getURL( String hostname, String port, String d... method getExtraProperty (line 64) | private String getExtraProperty( String key ) { method getProperty (line 68) | private String getProperty( String key ) { method getFieldDefinition (line 76) | @Override method isKerberos (line 140) | private boolean isKerberos() { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/DatabaseMetaWithVersion.java class DatabaseMetaWithVersion (line 34) | public abstract class DatabaseMetaWithVersion extends BaseDatabaseMeta { method DatabaseMetaWithVersion (line 38) | protected DatabaseMetaWithVersion( DriverLocator driverLocator ) { method getURL (line 42) | @Override public abstract String getURL( String hostname, String port,... method isDriverVersion (line 51) | protected boolean isDriverVersion( int majorVersion, int minorVersion ) { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/DummyDriver.java class DummyDriver (line 35) | public class DummyDriver implements Driver { method connect (line 36) | @Override public Connection connect( String url, Properties info ) thr... method acceptsURL (line 40) | @Override public boolean acceptsURL( String url ) throws SQLException { method getPropertyInfo (line 44) | @Override public DriverPropertyInfo[] getPropertyInfo( String url, Pro... method getMajorVersion (line 48) | @Override public int getMajorVersion() { method getMinorVersion (line 52) | @Override public int getMinorVersion() { method jdbcCompliant (line 56) | @Override public boolean jdbcCompliant() { method getParentLogger (line 60) | @Override public Logger getParentLogger() throws SQLFeatureNotSupporte... FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/Hive2DatabaseDialect.java class Hive2DatabaseDialect (line 24) | public class Hive2DatabaseDialect extends AbstractDatabaseDialect { method Hive2DatabaseDialect (line 26) | public Hive2DatabaseDialect() { method getDatabaseType (line 43) | public IDatabaseType getDatabaseType() { method getNativeDriver (line 47) | @Override method getURL (line 52) | @Override method getNativeJdbcPre (line 68) | @Override method getAddColumnStatement (line 84) | @Override method getModifyColumnStatement (line 101) | @Override method getFieldDefinition (line 107) | @Override method getUsedLibraries (line 205) | @Override method getDefaultDatabasePort (line 210) | @Override method supportsSchemas (line 220) | @Override method initialize (line 225) | @Override public boolean initialize( String classname ) { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/Hive2DatabaseMeta.java class Hive2DatabaseMeta (line 33) | @DatabaseMetaPlugin( type = "HIVE2", typeDescription = "Hadoop Hive 2/3" ) method Hive2DatabaseMeta (line 48) | public Hive2DatabaseMeta(){ method Hive2DatabaseMeta (line 52) | public Hive2DatabaseMeta( DriverLocator driverLocator ) { method Hive2DatabaseMeta (line 56) | public Hive2DatabaseMeta( DriverLocator driverLocator, NamedClusterSer... method getMetastoreLocator (line 61) | public synchronized MetastoreLocator getMetastoreLocator() { method Hive2DatabaseMeta (line 73) | @VisibleForTesting method getAccessTypeList (line 81) | @Override method getAddColumnStatement (line 86) | @Override method getDriverClass (line 94) | @Override method getFieldDefinition (line 106) | @Override method getModifyColumnStatement (line 172) | @Override method getURL (line 179) | @Override method getUsedLibraries (line 185) | @Override method getSelectCountStatement (line 197) | @Override method generateColumnAlias (line 202) | @Override method getStartQuote (line 212) | public String getStartQuote() { method getEndQuote (line 221) | public String getEndQuote() { method getTableTypes (line 228) | @Override method getViewTypes (line 236) | @Override method getTruncateTableStatement (line 245) | @Override method supportsSetCharacterStream (line 250) | @Override method supportsBatchUpdates (line 255) | @Override method supportsTimeStampToDateConversion (line 260) | @Override method getNamedClusterList (line 265) | @Override public List getNamedClusterList() { method putOptionalOptions (line 274) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/Hive2SimbaDatabaseDialect.java class Hive2SimbaDatabaseDialect (line 30) | public class Hive2SimbaDatabaseDialect extends Hive2DatabaseDialect { method Hive2SimbaDatabaseDialect (line 34) | public Hive2SimbaDatabaseDialect() { method getDatabaseType (line 49) | public IDatabaseType getDatabaseType() { method getNativeDriver (line 53) | @Override method getURL (line 58) | @Override method getExtraProperty (line 74) | private String getExtraProperty( String key, IDatabaseConnection datab... method getProperty (line 79) | private String getProperty( String key, IDatabaseConnection databaseCo... method getNativeJdbcPre (line 83) | @Override method getUsedLibraries (line 88) | @Override method initialize (line 93) | @Override public boolean initialize( String classname ) { method isKerberos (line 97) | public boolean isKerberos( IDatabaseConnection databaseConnection ) { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/Hive2SimbaDatabaseMeta.java class Hive2SimbaDatabaseMeta (line 23) | public class Hive2SimbaDatabaseMeta extends BaseSimbaDatabaseMeta { method Hive2SimbaDatabaseMeta (line 31) | public Hive2SimbaDatabaseMeta( DriverLocator driverLocator, NamedClust... method getJdbcPrefix (line 35) | @Override protected String getJdbcPrefix() { method getDriverClass (line 39) | @Override method getUsedLibraries (line 44) | @Override method getDefaultDatabasePort (line 49) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/HiveDatabaseDialect.java class HiveDatabaseDialect (line 24) | public class HiveDatabaseDialect extends AbstractDatabaseDialect { method HiveDatabaseDialect (line 26) | public HiveDatabaseDialect() { method getDatabaseType (line 41) | public IDatabaseType getDatabaseType() { method getNativeDriver (line 45) | @Override method getURL (line 50) | @Override method getNativeJdbcPre (line 66) | @Override method getAddColumnStatement (line 88) | @Override method getModifyColumnStatement (line 111) | @Override method getFieldDefinition (line 117) | @Override method getUsedLibraries (line 216) | @Override method getDefaultDatabasePort (line 221) | @Override method supportsSchemas (line 231) | @Override method initialize (line 236) | @Override public boolean initialize( String classname ) { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/HiveDatabaseMeta.java class HiveDatabaseMeta (line 23) | @DatabaseMetaPlugin( type = "HIVE", typeDescription = "Hadoop Hive (depr... method HiveDatabaseMeta (line 35) | public HiveDatabaseMeta() { method HiveDatabaseMeta (line 38) | public HiveDatabaseMeta( DriverLocator driverLocator ) { method getAccessTypeList (line 42) | @Override method getAddColumnStatement (line 47) | @Override method getDriverClass (line 55) | @Override method getFieldDefinition (line 67) | @Override method getModifyColumnStatement (line 143) | @Override method getURL (line 150) | @Override method getUsedLibraries (line 159) | @Override method getSelectCountStatement (line 171) | @Override method generateColumnAlias (line 176) | @Override method getStartQuote (line 194) | public String getStartQuote() { method getEndQuote (line 203) | public String getEndQuote() { method getDefaultDatabasePort (line 207) | @Override method getTableTypes (line 215) | @Override method getViewTypes (line 223) | @Override method getTruncateTableStatement (line 232) | @Override method supportsSetCharacterStream (line 240) | @Override method supportsBatchUpdates (line 245) | @Override method supportsTimeStampToDateConversion (line 250) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/HiveWarehouseDatabaseMeta.java class HiveWarehouseDatabaseMeta (line 21) | @DatabaseMetaPlugin( type = "HIVEWAREHOUSE", typeDescription = "Hive War... method HiveWarehouseDatabaseMeta (line 23) | public HiveWarehouseDatabaseMeta() { method HiveWarehouseDatabaseMeta (line 26) | public HiveWarehouseDatabaseMeta( DriverLocator driverLocator, NamedCl... FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaDatabaseDialect.java class ImpalaDatabaseDialect (line 23) | public class ImpalaDatabaseDialect extends Hive2DatabaseDialect { method ImpalaDatabaseDialect (line 25) | public ImpalaDatabaseDialect() { method getDatabaseType (line 42) | public IDatabaseType getDatabaseType() { method getNativeDriver (line 46) | @Override method getURL (line 51) | @Override method getNativeJdbcPre (line 78) | @Override method getUsedLibraries (line 83) | @Override method getDefaultDatabasePort (line 88) | @Override method initialize (line 93) | @Override public boolean initialize( String classname ) { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaDatabaseMeta.java class ImpalaDatabaseMeta (line 34) | @DatabaseMetaPlugin( type = "IMPALA", typeDescription = "Impala" ) method ImpalaDatabaseMeta (line 44) | @VisibleForTesting method ImpalaDatabaseMeta (line 50) | public ImpalaDatabaseMeta() { method ImpalaDatabaseMeta (line 55) | public ImpalaDatabaseMeta( DriverLocator driverLocator, NamedClusterSe... method getAccessTypeList (line 59) | @Override method getDriverClass (line 64) | @Override method getFieldDefinition (line 76) | @Override method getURL (line 144) | @Override method getUsedLibraries (line 162) | @Override method getDefaultDatabasePort (line 168) | @Override method getNamedClusterList (line 173) | @Override public List getNamedClusterList() { method putOptionalOptions (line 182) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaSimbaDatabaseDialect.java class ImpalaSimbaDatabaseDialect (line 25) | public class ImpalaSimbaDatabaseDialect extends Hive2SimbaDatabaseDialect { method ImpalaSimbaDatabaseDialect (line 28) | public ImpalaSimbaDatabaseDialect() { method getDatabaseType (line 51) | public IDatabaseType getDatabaseType() { method getNativeDriver (line 55) | @Override method getNativeJdbcPre (line 60) | @Override method getDefaultDatabasePort (line 65) | @Override method getUsedLibraries (line 70) | @Override method initialize (line 76) | @Override public boolean initialize( String classname ) { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaSimbaDatabaseMeta.java class ImpalaSimbaDatabaseMeta (line 26) | @DatabaseMetaPlugin( type = "IMPALASIMBA", typeDescription = "Cloudera I... method ImpalaSimbaDatabaseMeta (line 35) | public ImpalaSimbaDatabaseMeta() { method ImpalaSimbaDatabaseMeta (line 38) | public ImpalaSimbaDatabaseMeta( DriverLocator driverLocator, NamedClus... method getJdbcPrefix (line 42) | @Override protected String getJdbcPrefix() { method getDriverClass (line 46) | @Override method getUsedLibraries (line 51) | @Override method getDefaultDatabasePort (line 56) | @Override method getDefaultOptions (line 61) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/SimbaUrl.java class SimbaUrl (line 21) | public class SimbaUrl { method SimbaUrl (line 40) | public SimbaUrl( Builder builder ) { method getURL (line 53) | public String getURL() { class Builder (line 91) | public static final class Builder { method Builder (line 102) | private Builder() { method create (line 105) | public static Builder create() { method withAccessType (line 109) | public Builder withAccessType( int accessType ) { method withDatabaseName (line 114) | public Builder withDatabaseName( String databaseName ) { method withDefaultPort (line 119) | public Builder withDefaultPort( int defaultPort ) { method withHostname (line 124) | public Builder withHostname( String hostname ) { method withIsKerberos (line 129) | public Builder withIsKerberos( boolean isKerberos ) { method withJdbcPrefix (line 134) | public Builder withJdbcPrefix( String jdbcPrefix ) { method withPassword (line 139) | public Builder withPassword( String password ) { method withPort (line 144) | public Builder withPort( String port ) { method withUsername (line 149) | public Builder withUsername( String username ) { method build (line 154) | public SimbaUrl build() { FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/SparkSimbaDatabaseDialect.java class SparkSimbaDatabaseDialect (line 23) | public class SparkSimbaDatabaseDialect extends Hive2SimbaDatabaseDialect { method SparkSimbaDatabaseDialect (line 26) | public SparkSimbaDatabaseDialect() { method getDatabaseType (line 42) | public IDatabaseType getDatabaseType() { method getNativeDriver (line 47) | @Override method getNativeJdbcPre (line 52) | @Override method getDefaultDatabasePort (line 57) | @Override method getUsedLibraries (line 62) | @Override FILE: kettle-plugins/hive/core/src/main/java/org/pentaho/big/data/kettle/plugins/hive/SparkSimbaDatabaseMeta.java class SparkSimbaDatabaseMeta (line 28) | @DatabaseMetaPlugin( type = "SPARKSIMBA", typeDescription = "SparkSQL" ) method SparkSimbaDatabaseMeta (line 38) | public SparkSimbaDatabaseMeta() { method SparkSimbaDatabaseMeta (line 41) | public SparkSimbaDatabaseMeta( DriverLocator driverLocator, NamedClust... method getAccessTypeList (line 45) | @Override public int[] getAccessTypeList() { method getJdbcPrefix (line 49) | @Override protected String getJdbcPrefix() { method getDriverClass (line 53) | @Override method getSQLQueryFields (line 58) | @Override method getStartQuote (line 63) | @Override method getEndQuote (line 68) | @Override method getSQLTableExists (line 73) | @Override method getTruncateTableStatement (line 78) | @Override method getSQLColumnExists (line 83) | @Override method getLimitClause (line 88) | @Override method getSelectCountStatement (line 93) | @Override method getDropColumnStatement (line 98) | @Override method getAddColumnStatement (line 104) | @Override method getModifyColumnStatement (line 110) | @Override method getUsedLibraries (line 116) | @Override method getDefaultDatabasePort (line 121) | @Override method getDefaultOptions (line 126) | @Override public Map getDefaultOptions() { FILE: kettle-plugins/hive/core/src/test/java/org/apache/hadoop/hive/jdbc/HiveDriverTest.java class HiveDriverTest (line 22) | public class HiveDriverTest { method testSubclass (line 23) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/apache/hive/jdbc/HiveDriverTest.java class HiveDriverTest (line 24) | public class HiveDriverTest { method testIsInstance (line 25) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/apache/hive/jdbc/HiveSimbaDriverTest.java class HiveSimbaDriverTest (line 24) | public class HiveSimbaDriverTest { method testIsInstance (line 25) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/apache/hive/jdbc/ImpalaDriverTest.java class ImpalaDriverTest (line 24) | public class ImpalaDriverTest { method testIsInstance (line 25) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/apache/hive/jdbc/ImpalaSimbaDriverTest.java class ImpalaSimbaDriverTest (line 24) | public class ImpalaSimbaDriverTest { method testIsInstance (line 25) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/BaseSimbaDatabaseMetaTest.java class BaseSimbaDatabaseMetaTest (line 48) | @RunWith( MockitoJUnitRunner.Silent.class ) method initLogs (line 60) | @BeforeClass method setup (line 65) | @Before method testVersionConstructor (line 80) | @Test method testGetAccessTypeList (line 91) | @Test method testGetDriverClassOther (line 99) | @Test method testGetUrlDefaults (line 104) | @Test method testGetUrlJndi (line 115) | @Test method testGetUrlKerb (line 121) | @Test method testGetUrlUsername (line 152) | @Test method testGetUrlPassword (line 168) | @Test method testGetFieldDefinitionBoolean (line 188) | @Test method testGetFieldDefinitionDate (line 193) | @Test method testGetFieldDefinitionTimestamp (line 200) | @Test method testGetFieldDefinitionStringVarchar (line 207) | @Test method testGetFieldDefinitionNumber (line 214) | @Test method testGetFieldDefinitionInteger (line 237) | @Test method testGetFieldDefinitionBigNumber (line 253) | @Test method testGetFieldDefinition (line 276) | @Test method assertGetFieldDefinition (line 281) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... method assertGetFieldDefinition (line 287) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/Hive2DatabaseDialectTest.java class Hive2DatabaseDialectTest (line 22) | public class Hive2DatabaseDialectTest { method Hive2DatabaseDialectTest (line 26) | public Hive2DatabaseDialectTest() { method testGetNativeDriver (line 30) | @Test method testGetURL (line 35) | @Test method testGetUsedLibraries (line 42) | @Test method testGetNativeJdbcPre (line 47) | @Test method testGetDatabaseType (line 52) | @Test method testSupportsSchemas (line 58) | @Test method testGetDefaultDatabasePort (line 63) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/Hive2DatabaseMetaTest.java class Hive2DatabaseMetaTest (line 57) | @RunWith( MockitoJUnitRunner.Silent.class ) method setup (line 74) | @Before method testGetAccessTypeList (line 83) | @Test method testGetUsedLibraries (line 88) | @Test method testGetDriverClass (line 93) | @Test method testGetAddColumnStatement (line 98) | @Test method testGetFieldDefinitionBoolean (line 111) | @Test method testGetFieldDefinitionDate (line 116) | @Test method testGetFieldDefinitionDateUnsupported (line 123) | @Test method testGetFieldDefinitionTimestamp (line 130) | @Test method testGetFieldDefinitionUnsupported (line 137) | @Test method testGetFieldDefinitionString (line 144) | @Test method testGetFieldDefinitionNumber (line 149) | @Test method testGetFieldDefinitionInteger (line 172) | @Test method testGetFieldDefinitionBigNumber (line 188) | @Test method testGetFieldDefinition (line 211) | @Test method testGetModifyColumnStatement (line 216) | @Test method testGetURL (line 229) | @Test method testGetSelectCountStatement (line 244) | @Test method testGenerateColumnAlias5AndPrior (line 251) | @Test method testGenerateColumnAlias6AndLater (line 260) | @Test method testIsDriverVersionNull (line 269) | @Test method testIsDriverVersionMajorGreater (line 274) | @Test method testIsDriverVersionMajorSameMinorEqual (line 281) | @Test method testIsDriverVersionMajorSameMinorLess (line 288) | @Test method testIsDriverVersionMajorLess (line 295) | @Test method testGetStartQuote (line 302) | @Test method testGetEndQuote (line 307) | @Test method testGetTableTypesReturnsNull (line 312) | @Test method testGetViewTypes (line 317) | @Test method testGetTruncateTableStatement10OrPrior (line 323) | @Test method testGetTruncateTableStatement11AndLater (line 332) | @Test method testSupportsSetCharacterStream (line 341) | @Test method testSupportsBatchUpdates (line 346) | @Test method testSupportsTimeStampToDateConversion (line 351) | @Test method testGetNamedClusterList (line 356) | @Test method testPutOptionalOptions (line 362) | @Test method assertGetFieldDefinition (line 372) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... method assertGetFieldDefinition (line 378) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/Hive2SimbaDatabaseDialectTest.java class Hive2SimbaDatabaseDialectTest (line 26) | public class Hive2SimbaDatabaseDialectTest { method Hive2SimbaDatabaseDialectTest (line 30) | public Hive2SimbaDatabaseDialectTest() { method testGetNativeDriver (line 34) | @Test method testGetURLNative (line 39) | @Test method testGetURLJndi (line 47) | @Test method testGetUsedLibraries (line 55) | @Test method testGetNativeJdbcPre (line 60) | @Test method testGetDatabaseType (line 65) | @Test method testGetReservedWords (line 71) | @Test method testSupportsBitmapIndex (line 76) | @Test method testGetTruncateTableStatement (line 81) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/Hive2SimbaDatabaseMetaTest.java class Hive2SimbaDatabaseMetaTest (line 34) | @RunWith( MockitoJUnitRunner.Silent.class ) method initLogs (line 44) | @BeforeClass method setup (line 49) | @Before method testGetDriverClassOther (line 55) | @Test method testGetJdbcPrefix (line 60) | @Test method testGetUsedLibraries (line 66) | @Test method testGetDefaultDatabasePort (line 73) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/HiveDatabaseDialectTest.java class HiveDatabaseDialectTest (line 22) | public class HiveDatabaseDialectTest { method HiveDatabaseDialectTest (line 26) | public HiveDatabaseDialectTest() { method testGetNativeDriver (line 30) | @Test method testGetURL (line 35) | @Test method testGetUsedLibraries (line 42) | @Test method testGetNativeJdbcPre (line 47) | @Test method testGetDatabaseType (line 52) | @Test method testSupportsSchemas (line 58) | @Test method testGetDefaultDatabasePort (line 63) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/HiveDatabaseMetaTest.java class HiveDatabaseMetaTest (line 44) | @RunWith( MockitoJUnitRunner.class ) method setup (line 54) | @Before method testColumnAlias_060_And_Later (line 61) | @Test method testColumnAlias_050 (line 76) | @Test method testGetAddColumnStatement (line 91) | @Test method testGetDriverClass (line 104) | @Test method testGetFieldDefinitionBoolean (line 109) | @Test method testGetFieldDefinitionDate (line 114) | @Test method testGetFieldDefinitionDateUnsupported (line 121) | @Test( expected = IllegalArgumentException.class ) method testGetFieldDefinitionTimestamp (line 128) | @Test method testGetFieldDefinitionUnsupported (line 135) | @Test( expected = IllegalArgumentException.class ) method testGetFieldDefinitionString (line 142) | @Test method testGetFieldDefinitionNumber (line 147) | @Test method testGetFieldDefinitionInteger (line 170) | @Test method testGetFieldDefinitionBigNumber (line 186) | @Test method testGetFieldDefinition (line 209) | @Test method testGetModifyColumnStatement (line 214) | @Test method testGetURL (line 227) | @Test method testGetURLEmptyPort (line 242) | @Test method testGetUsedLibraries (line 256) | @Test method testGetSelectCountStatement (line 261) | @Test method testIsDriverVersionNull (line 268) | @Test method testIsDriverVersionMajorGreater (line 273) | @Test method testIsDriverVersionMajorSameMinorEqual (line 280) | @Test method testIsDriverVersionMajorSameMinorLess (line 287) | @Test method testIsDriverVersionMajorLess (line 294) | @Test method testGetStartQuote (line 301) | @Test method testGetEndQuote (line 306) | @Test method testGetDefaultDatabasePort (line 311) | @Test method testGetTableTypes (line 316) | @Test method testGetViewTypes (line 321) | @Test method testGetTruncateTableStatement10OrPrior (line 327) | @Test method testGetTruncateTableStatement11AndLater (line 334) | @Test method testSupportsSetCharacterStream (line 343) | @Test method testSupportsBatchUpdates (line 348) | @Test method testSupportsTimeStampToDateConversion (line 353) | @Test method assertGetFieldDefinition (line 358) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... method assertGetFieldDefinition (line 364) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaDatabaseDialectTest.java class ImpalaDatabaseDialectTest (line 24) | public class ImpalaDatabaseDialectTest { method testGetURL (line 26) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaDatabaseMetaTest.java class ImpalaDatabaseMetaTest (line 47) | @RunWith( MockitoJUnitRunner.class ) method setup (line 64) | @Before method testVersionConstructor (line 73) | @Test method testGetAccessTypeList (line 84) | @Test method testGetDriverClass (line 89) | @Test method testGetFieldDefinitionBoolean (line 94) | @Test method testGetFieldDefinitionDate (line 99) | @Test method testGetFieldDefinitionDateUnsupported (line 106) | @Test( expected = IllegalArgumentException.class ) method testGetFieldDefinitionTimestamp (line 113) | @Test method testGetFieldDefinitionUnsupported (line 120) | @Test( expected = IllegalArgumentException.class ) method testGetFieldDefinitionString (line 127) | @Test method testGetFieldDefinitionNumber (line 132) | @Test method testGetFieldDefinitionInteger (line 155) | @Test method testGetFieldDefinitionBigNumber (line 171) | @Test method testGetFieldDefinition (line 194) | @Test method testGetURL (line 199) | @Test method testGetURLPrincipal (line 214) | @Test method testGetURLEmptyPort (line 243) | @Test method testGetUsedLibraries (line 257) | @Test method testGetDefaultDatabasePort (line 262) | @Test method assertGetFieldDefinition (line 267) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... method assertGetFieldDefinition (line 273) | private void assertGetFieldDefinition( ValueMetaInterface valueMetaInt... method testGetNamedClusterList (line 280) | @Test method testPutOptionalOptions (line 286) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaSimbaDatabaseDialectTest.java class ImpalaSimbaDatabaseDialectTest (line 28) | public class ImpalaSimbaDatabaseDialectTest { method testGetUrlNative (line 31) | @Test method testDefaultSocketTimeout (line 40) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/ImpalaSimbaDatabaseMetaTest.java class ImpalaSimbaDatabaseMetaTest (line 42) | @RunWith( MockitoJUnitRunner.Silent.class ) method initLogs (line 52) | @BeforeClass method setup (line 57) | @Before method testGetAccessTypeList (line 63) | @Test method testGetDriverClassOther (line 70) | @Test method testGetJdbcPrefix (line 75) | @Test method testGetUsedLibraries (line 81) | @Test method testGetDefaultDatabasePort (line 88) | @Test method testGetDefaultOptions (line 94) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/SimbaUrlTest.java class SimbaUrlTest (line 24) | public class SimbaUrlTest { method testWithDefaultPort (line 28) | @Test method testWithSetPort (line 40) | @Test method testWithDatabaseName (line 53) | @Test method testJndi (line 67) | @Test method testAuthMech0 (line 76) | @Test method testAuthMech1 (line 90) | @Test method testAuthMech2 (line 105) | @Test method testAuthMech3 (line 120) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/SparkSimbaDatabaseDialectTest.java class SparkSimbaDatabaseDialectTest (line 25) | public class SparkSimbaDatabaseDialectTest { method getDatabaseType (line 29) | @Test method getNativeDriver (line 34) | @Test method getNativeJdbcPre (line 39) | @Test method getDefaultDatabasePort (line 44) | @Test method getUsedLibraries (line 49) | @Test method testDefaultSocketTimeout (line 54) | @Test FILE: kettle-plugins/hive/core/src/test/java/org/pentaho/big/data/kettle/plugins/hive/SparkSimbaDatabaseMetaTest.java class SparkSimbaDatabaseMetaTest (line 42) | @RunWith( MockitoJUnitRunner.Silent.class ) method initLogs (line 55) | @BeforeClass method setup (line 60) | @Before method testGetAccessTypeList (line 67) | @Test method testGetJdbcPrefix (line 74) | @Test method testGetUsedLibraries (line 80) | @Test method testGetDefaultDatabasePort (line 87) | @Test method testQuoting (line 93) | @Test method testGeneratedSQLContainsSchemaReferenceWhenTableUnqualified (line 99) | @Test method testGeneratedSQLContainsSchemaReferenceWhenTableQualified (line 104) | @Test method verifyExpectedSql (line 109) | private void verifyExpectedSql( String schemaName, String tableName ) { method testUnsupportedDrop (line 125) | @Test method testUnsupportedAddCol (line 132) | @Test method testUnsupportedModCol (line 139) | @Test method testGetDriverClass (line 146) | @Test method testGetDefaultOptions (line 152) | @Test method testLimit (line 164) | @Test FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/DialogClassUtil.java class DialogClassUtil (line 19) | public class DialogClassUtil { method getDialogClassName (line 23) | public static String getDialogClassName( Class clazz ) { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/NamedClusterLoadSaveUtil.java class NamedClusterLoadSaveUtil (line 32) | public class NamedClusterLoadSaveUtil { method saveNamedClusterRep (line 39) | public void saveNamedClusterRep( NamedCluster namedCluster, NamedClust... method getXmlNamedCluster (line 62) | public void getXmlNamedCluster( NamedCluster namedCluster, NamedCluste... method loadClusterConfig (line 90) | public NamedCluster loadClusterConfig( NamedClusterService namedCluste... FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/UserDefinedItem.java class UserDefinedItem (line 20) | public class UserDefinedItem implements XulEventSource { method UserDefinedItem (line 24) | public UserDefinedItem() { method getName (line 27) | public String getName() { method setName (line 31) | public void setName( String name ) { method getValue (line 35) | public String getValue() { method setValue (line 39) | public void setValue( String value ) { method addPropertyChangeListener (line 43) | public void addPropertyChangeListener( PropertyChangeListener listener... method removePropertyChangeListener (line 46) | public void removePropertyChangeListener( PropertyChangeListener liste... FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/hadoop/JobEntryHadoopJobExecutor.java class JobEntryHadoopJobExecutor (line 62) | @JobEntry( id = "HadoopJobExecutorPlugin", image = "HDE.svg", name = "Ha... method JobEntryHadoopJobExecutor (line 105) | public JobEntryHadoopJobExecutor( NamedClusterService namedClusterServ... method JobEntryHadoopJobExecutor (line 114) | public JobEntryHadoopJobExecutor() { method getNamedClusterService (line 123) | public NamedClusterService getNamedClusterService() { method getRuntimeTestActionService (line 127) | public RuntimeTestActionService getRuntimeTestActionService() { method getRuntimeTester (line 131) | public RuntimeTester getRuntimeTester() { method getNamedClusterServiceLocator (line 135) | public NamedClusterServiceLocator getNamedClusterServiceLocator() { method getHadoopJobName (line 139) | public String getHadoopJobName() { method setHadoopJobName (line 143) | public void setHadoopJobName( String hadoopJobName ) { method getJarUrl (line 147) | public String getJarUrl() { method setJarUrl (line 151) | public void setJarUrl( String jarUrl ) { method getDriverClass (line 155) | public String getDriverClass() { method setDriverClass (line 159) | public void setDriverClass( String driverClass ) { method isSimple (line 163) | public boolean isSimple() { method setSimple (line 167) | public void setSimple( boolean isSimple ) { method getCmdLineArgs (line 171) | public String getCmdLineArgs() { method setCmdLineArgs (line 175) | public void setCmdLineArgs( String cmdLineArgs ) { method getOutputKeyClass (line 179) | public String getOutputKeyClass() { method setOutputKeyClass (line 183) | public void setOutputKeyClass( String outputKeyClass ) { method getOutputValueClass (line 187) | public String getOutputValueClass() { method setOutputValueClass (line 191) | public void setOutputValueClass( String outputValueClass ) { method getMapperClass (line 195) | public String getMapperClass() { method setMapperClass (line 199) | public void setMapperClass( String mapperClass ) { method getCombinerClass (line 203) | public String getCombinerClass() { method setCombinerClass (line 207) | public void setCombinerClass( String combinerClass ) { method getReducerClass (line 211) | public String getReducerClass() { method setReducerClass (line 215) | public void setReducerClass( String reducerClass ) { method getInputFormatClass (line 219) | public String getInputFormatClass() { method setInputFormatClass (line 223) | public void setInputFormatClass( String inputFormatClass ) { method getOutputFormatClass (line 227) | public String getOutputFormatClass() { method setOutputFormatClass (line 231) | public void setOutputFormatClass( String outputFormatClass ) { method getNamedCluster (line 235) | public NamedCluster getNamedCluster() { method setNamedCluster (line 239) | public void setNamedCluster( NamedCluster namedCluster ) { method getInputPath (line 243) | public String getInputPath() { method setInputPath (line 247) | public void setInputPath( String inputPath ) { method getOutputPath (line 251) | public String getOutputPath() { method setOutputPath (line 255) | public void setOutputPath( String outputPath ) { method isBlocking (line 259) | public boolean isBlocking() { method setBlocking (line 263) | public void setBlocking( boolean blocking ) { method getLoggingInterval (line 267) | public String getLoggingInterval() { method setLoggingInterval (line 271) | public void setLoggingInterval( String loggingInterval ) { method getUserDefined (line 275) | public List getUserDefined() { method setUserDefined (line 279) | public void setUserDefined( List userDefined ) { method getNumMapTasks (line 283) | public String getNumMapTasks() { method setNumMapTasks (line 287) | public void setNumMapTasks( String numMapTasks ) { method getNumReduceTasks (line 291) | public String getNumReduceTasks() { method setNumReduceTasks (line 295) | public void setNumReduceTasks( String numReduceTasks ) { method execute (line 299) | public Result execute( final Result result, int arg1 ) throws KettleEx... method resolveJarUrl (line 470) | @VisibleForTesting method resolveJarUrl (line 475) | public static URL resolveJarUrl( final String jarUrl, VariableSpace va... method logTaskMessages (line 494) | private int logTaskMessages( MapReduceJobAdvanced runningJob, int star... method executeMainMethod (line 549) | protected void executeMainMethod( Class clazz ) throws NoSuchMethod... method printJobStatus (line 563) | public void printJobStatus( MapReduceJobAdvanced runningJob ) throws I... method loadXML (line 573) | @Override method getXML (line 623) | @Override public String getXML() { method loadRep (line 669) | @Override method saveRep (line 723) | @Override public void saveRep( Repository rep, IMetaStore metaStore, O... method evaluates (line 774) | @Override method isUnconditional (line 779) | @Override method getSimpleLoggingInterval (line 784) | public String getSimpleLoggingInterval() { method setSimpleLoggingInterval (line 788) | public void setSimpleLoggingInterval( String simpleLoggingInterval ) { method isSimpleBlocking (line 792) | public boolean isSimpleBlocking() { method setSimpleBlocking (line 796) | public void setSimpleBlocking( boolean simpleBlocking ) { method getDialogClassName (line 800) | @Override public String getDialogClassName() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/pmr/JobEntryHadoopTransJobExecutor.java class JobEntryHadoopTransJobExecutor (line 77) | @SuppressWarnings( "deprecation" ) method JobEntryHadoopTransJobExecutor (line 138) | public JobEntryHadoopTransJobExecutor( NamedClusterService namedCluste... method JobEntryHadoopTransJobExecutor (line 150) | public JobEntryHadoopTransJobExecutor() { method loadTransMeta (line 157) | protected static final TransMeta loadTransMeta( Bowl bowl, VariableSpa... method getTransMetaFromRepo (line 181) | public static TransMeta getTransMetaFromRepo( String fullPath, Reposit... method getTransMetaFromRepo (line 203) | public static TransMeta getTransMetaFromRepo( String repositoryDir, St... method splitInputPaths (line 220) | public static String[] splitInputPaths( String inputPath, VariableSpac... method getHadoopJobName (line 237) | public String getHadoopJobName() { method setHadoopJobName (line 241) | public void setHadoopJobName( String hadoopJobName ) { method getSpecificationMethods (line 250) | @Override method getDirectories (line 263) | @Override method setDirectories (line 276) | @Override method getMapTrans (line 295) | public String getMapTrans() { method setMapTrans (line 299) | public void setMapTrans( String mapTrans ) { method getCombinerTrans (line 303) | public String getCombinerTrans() { method setCombinerTrans (line 307) | public void setCombinerTrans( String combinerTrans ) { method getReduceTrans (line 311) | public String getReduceTrans() { method setReduceTrans (line 315) | public void setReduceTrans( String reduceTrans ) { method getMapRepositoryDir (line 319) | public String getMapRepositoryDir() { method setMapRepositoryDir (line 323) | public void setMapRepositoryDir( String mapRepositoryDir ) { method getMapRepositoryFile (line 327) | public String getMapRepositoryFile() { method setMapRepositoryFile (line 331) | public void setMapRepositoryFile( String mapRepositoryFile ) { method getMapRepositoryReference (line 335) | public ObjectId getMapRepositoryReference() { method setMapRepositoryReference (line 339) | public void setMapRepositoryReference( ObjectId mapRepositoryReference... method getCombinerRepositoryDir (line 343) | public String getCombinerRepositoryDir() { method setCombinerRepositoryDir (line 347) | public void setCombinerRepositoryDir( String combinerRepositoryDir ) { method getCombinerRepositoryFile (line 351) | public String getCombinerRepositoryFile() { method setCombinerRepositoryFile (line 355) | public void setCombinerRepositoryFile( String combinerRepositoryFile ) { method getCombinerRepositoryReference (line 359) | public ObjectId getCombinerRepositoryReference() { method setCombinerRepositoryReference (line 363) | public void setCombinerRepositoryReference( ObjectId combinerRepositor... method getReduceRepositoryDir (line 367) | public String getReduceRepositoryDir() { method setReduceRepositoryDir (line 371) | public void setReduceRepositoryDir( String reduceRepositoryDir ) { method getReduceRepositoryFile (line 375) | public String getReduceRepositoryFile() { method setReduceRepositoryFile (line 379) | public void setReduceRepositoryFile( String reduceRepositoryFile ) { method getReduceRepositoryReference (line 383) | public ObjectId getReduceRepositoryReference() { method setReduceRepositoryReference (line 387) | public void setReduceRepositoryReference( ObjectId reduceRepositoryRef... method getMapInputStepName (line 391) | public String getMapInputStepName() { method setMapInputStepName (line 395) | public void setMapInputStepName( String mapInputStepName ) { method getMapOutputStepName (line 399) | public String getMapOutputStepName() { method setMapOutputStepName (line 403) | public void setMapOutputStepName( String mapOutputStepName ) { method getCombinerInputStepName (line 407) | public String getCombinerInputStepName() { method setCombinerInputStepName (line 411) | public void setCombinerInputStepName( String combinerInputStepName ) { method getCombinerOutputStepName (line 415) | public String getCombinerOutputStepName() { method setCombinerOutputStepName (line 419) | public void setCombinerOutputStepName( String combinerOutputStepName ) { method getReduceInputStepName (line 423) | public String getReduceInputStepName() { method setReduceInputStepName (line 427) | public void setReduceInputStepName( String reduceInputStepName ) { method getReduceOutputStepName (line 431) | public String getReduceOutputStepName() { method setReduceOutputStepName (line 435) | public void setReduceOutputStepName( String reduceOutputStepName ) { method getSuppressOutputOfMapKey (line 439) | public boolean getSuppressOutputOfMapKey() { method setSuppressOutputOfMapKey (line 443) | public void setSuppressOutputOfMapKey( boolean suppress ) { method getSuppressOutputOfMapValue (line 447) | public boolean getSuppressOutputOfMapValue() { method setSuppressOutputOfMapValue (line 451) | public void setSuppressOutputOfMapValue( boolean suppress ) { method getSuppressOutputOfKey (line 455) | public boolean getSuppressOutputOfKey() { method setSuppressOutputOfKey (line 459) | public void setSuppressOutputOfKey( boolean suppress ) { method getSuppressOutputOfValue (line 463) | public boolean getSuppressOutputOfValue() { method setSuppressOutputOfValue (line 467) | public void setSuppressOutputOfValue( boolean suppress ) { method getInputFormatClass (line 471) | public String getInputFormatClass() { method setInputFormatClass (line 475) | public void setInputFormatClass( String inputFormatClass ) { method getOutputFormatClass (line 479) | public String getOutputFormatClass() { method setOutputFormatClass (line 483) | public void setOutputFormatClass( String outputFormatClass ) { method getInputPath (line 487) | public String getInputPath() { method setInputPath (line 491) | public void setInputPath( String inputPath ) { method getOutputPath (line 495) | public String getOutputPath() { method setOutputPath (line 499) | public void setOutputPath( String outputPath ) { method isCleanOutputPath (line 503) | public boolean isCleanOutputPath() { method setCleanOutputPath (line 507) | public void setCleanOutputPath( boolean cleanOutputPath ) { method isBlocking (line 511) | public boolean isBlocking() { method setBlocking (line 515) | public void setBlocking( boolean blocking ) { method getLoggingInterval (line 519) | public String getLoggingInterval() { method setLoggingInterval (line 523) | public void setLoggingInterval( String loggingInterval ) { method getUserDefined (line 527) | public List getUserDefined() { method setUserDefined (line 531) | public void setUserDefined( List userDefined ) { method getNumMapTasks (line 535) | public String getNumMapTasks() { method setNumMapTasks (line 539) | public void setNumMapTasks( String numMapTasks ) { method getNumReduceTasks (line 543) | public String getNumReduceTasks() { method setNumReduceTasks (line 547) | public void setNumReduceTasks( String numReduceTasks ) { method execute (line 551) | public Result execute( Result result, int arg1 ) throws KettleException { method logTaskMessages (line 844) | private int logTaskMessages( MapReduceJobAdvanced runningJob, int star... method getPluginInterface (line 892) | public PluginInterface getPluginInterface() { method verifySingleThreadingValidity (line 897) | private void verifySingleThreadingValidity( TransMeta transMeta ) thro... method printJobStatus (line 913) | public void printJobStatus( MapReduceJobAdvanced runningJob ) throws I... method loadXML (line 923) | @Override method getXML (line 1015) | @Override method loadRep (line 1119) | @Override method saveRep (line 1200) | public void saveRep( Repository rep, ObjectId id_job ) throws KettleEx... method evaluates (line 1275) | public boolean evaluates() { method isUnconditional (line 1279) | public boolean isUnconditional() { method isReducingSingleThreaded (line 1286) | public boolean isReducingSingleThreaded() { method setReducingSingleThreaded (line 1294) | public void setReducingSingleThreaded( boolean reducingSingleThreaded ) { method isCombiningSingleThreaded (line 1298) | public boolean isCombiningSingleThreaded() { method setCombiningSingleThreaded (line 1302) | public void setCombiningSingleThreaded( boolean combiningSingleThreade... method hasMapperDefinition (line 1306) | private boolean hasMapperDefinition() { method hasReducerDefinition (line 1311) | private boolean hasReducerDefinition() { method hasCombinerDefinition (line 1316) | private boolean hasCombinerDefinition() { method defineSpecificationMethod (line 1321) | private ObjectLocationSpecificationMethod defineSpecificationMethod( S... method getReferencedObjectDescriptions (line 1331) | public String[] getReferencedObjectDescriptions() { method isReferencedObjectEnabled (line 1340) | public boolean[] isReferencedObjectEnabled() { method loadReferencedObject (line 1356) | public Object loadReferencedObject( Bowl bowl, int index, Repository r... method exportResources (line 1396) | @Override method setSpecificationMethodAndValue (line 1443) | private void setSpecificationMethodAndValue( int i, ObjectLocationSpec... method getNamedClusterService (line 1503) | public NamedClusterService getNamedClusterService() { method getNamedCluster (line 1507) | public NamedCluster getNamedCluster() { method setNamedCluster (line 1511) | public void setNamedCluster( NamedCluster namedCluster ) { method getRuntimeTester (line 1515) | public RuntimeTester getRuntimeTester() { method getRuntimeTestActionService (line 1519) | public RuntimeTestActionService getRuntimeTestActionService() { method getDialogClassName (line 1523) | @Override public String getDialogClassName() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/enter/HadoopEnterMeta.java class HadoopEnterMeta (line 22) | @Step( id = "HadoopEnterPlugin", image = "MRI.svg", name = "HadoopEnterP... method HadoopEnterMeta (line 36) | public HadoopEnterMeta() throws Throwable { method setDefault (line 40) | @Override public void setDefault() { method getDialogClassName (line 47) | @Override public String getDialogClassName() { method setKeyType (line 51) | @Injection( name = "KEY_TYPE" ) method setKeyLength (line 56) | @Injection( name = "KEY_LENGTH" ) method setKeyPrecision (line 61) | @Injection( name = "KEY_PRECISION" ) method setValueType (line 66) | @Injection( name = "VALUE_TYPE" ) method setValueLength (line 71) | @Injection( name = "VALUE_LENGTH" ) method setValuePrecision (line 76) | @Injection( name = "VALUE_PRECISION" ) FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExit.java class HadoopExit (line 26) | public class HadoopExit extends BaseStep implements StepInterface { method HadoopExit (line 32) | public HadoopExit( StepMeta stepMeta, StepDataInterface stepDataInterf... method runtimeInit (line 37) | public void runtimeInit() throws KettleException { method processRow (line 41) | public boolean processRow( StepMetaInterface smi, StepDataInterface sd... FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExitData.java class HadoopExitData (line 23) | public class HadoopExitData extends BaseStepData implements StepDataInte... method HadoopExitData (line 32) | public HadoopExitData() { method init (line 36) | public void init( Bowl bowl, RowMetaInterface rowMeta, HadoopExitMeta ... method getOutputRowMeta (line 47) | public RowMetaInterface getOutputRowMeta() { method setInKeyOrdinal (line 51) | public void setInKeyOrdinal( int inKeyOrdinal ) { method getInKeyOrdinal (line 55) | public int getInKeyOrdinal() { method setInValueOrdinal (line 59) | public void setInValueOrdinal( int inValueOrdinal ) { method getInValueOrdinal (line 63) | public int getInValueOrdinal() { method getOutKeyOrdinal (line 67) | public static int getOutKeyOrdinal() { method getOutValueOrdinal (line 71) | public static int getOutValueOrdinal() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExitMeta.java class HadoopExitMeta (line 47) | @Step( id = "HadoopExitPlugin", image = "MRO.svg", name = "HadoopExitPlu... method HadoopExitMeta (line 78) | public HadoopExitMeta() throws Throwable { method loadXML (line 82) | @Override public void loadXML( Node stepnode, List datab... method getXML (line 88) | @Override public String getXML() { method clone (line 98) | public Object clone() { method setDefault (line 102) | @Override public void setDefault() { method readRep (line 107) | @Override public void readRep( Repository rep, IMetaStore metaStore, O... method saveRep (line 113) | @Override public void saveRep( Repository rep, IMetaStore metaStore, O... method getFields (line 118) | @Override public void getFields( Bowl bowl, RowMetaInterface rowMeta, ... method check (line 146) | @Override method getStep (line 185) | public StepInterface getStep( StepMeta stepMeta, StepDataInterface ste... method getStepData (line 190) | public StepDataInterface getStepData() { method getOutKeyFieldname (line 194) | public String getOutKeyFieldname() { method setOutKeyFieldname (line 198) | public void setOutKeyFieldname( String arg ) { method getOutValueFieldname (line 202) | public String getOutValueFieldname() { method setOutValueFieldname (line 206) | public void setOutValueFieldname( String arg ) { method getDialogClassName (line 210) | @Override public String getDialogClassName() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/entry/hadoop/JobEntryHadoopJobExecutorController.java class JobEntryHadoopJobExecutorController (line 62) | public class JobEntryHadoopJobExecutorController extends AbstractXulEven... method JobEntryHadoopJobExecutorController (line 94) | public JobEntryHadoopJobExecutorController( HadoopClusterDelegateImpl ... method getVariableSpace (line 102) | protected VariableSpace getVariableSpace() { method accept (line 112) | public void accept() { method init (line 203) | public void init() throws XulDomException { method setJobMeta (line 275) | public void setJobMeta( JobMeta jobMeta ) { method cancel (line 279) | public void cancel() { method browseJar (line 291) | public void browseJar() { method newUserDefinedItem (line 346) | public void newUserDefinedItem() { method getSimpleConfiguration (line 350) | public SimpleConfiguration getSimpleConfiguration() { method getAdvancedConfiguration (line 354) | public AdvancedConfiguration getAdvancedConfiguration() { method getUserDefined (line 358) | public AbstractModelList getUserDefined() { method getName (line 362) | @Override method getJobEntryName (line 367) | public String getJobEntryName() { method setJobEntryName (line 371) | public void setJobEntryName( String jobEntryName ) { method getHadoopJobName (line 379) | public String getHadoopJobName() { method setHadoopJobName (line 383) | public void setHadoopJobName( String hadoopJobName ) { method getJarUrl (line 391) | public String getJarUrl() { method setJarUrl (line 395) | public void setJarUrl( String jarUrl ) { method getDriverClass (line 403) | public String getDriverClass() { method setDriverClass (line 407) | public void setDriverClass( String driverClass ) { method getDriverClasses (line 415) | public List getDriverClasses() { method setDriverClasses (line 419) | public void setDriverClasses( List driverClasses ) { method isSimple (line 427) | public boolean isSimple() { method setSimple (line 431) | public void setSimple( boolean isSimple ) { method invertSimpleBlocking (line 444) | public void invertSimpleBlocking() { method invertBlocking (line 448) | public void invertBlocking() { method getJobEntry (line 452) | public JobEntryHadoopJobExecutor getJobEntry() { method setJobEntry (line 456) | public void setJobEntry( JobEntryHadoopJobExecutor jobEntry ) { method getNamedClusters (line 460) | public List getNamedClusters() throws MetaStoreException { method openErrorDialog (line 464) | public void openErrorDialog( String title, String message ) { method closeErrorDialog (line 475) | public void closeErrorDialog() { method editNamedCluster (line 480) | public void editNamedCluster() { method newNamedCluster (line 501) | public void newNamedCluster() { method selectNamedCluster (line 516) | private void selectNamedCluster( String clusterName ) throws MetaStore... method help (line 528) | public void help() { method populateDriverMenuList (line 536) | private void populateDriverMenuList() { class SimpleConfiguration (line 573) | public class SimpleConfiguration extends XulEventSourceAdapter { method getCommandLineArgs (line 582) | public String getCommandLineArgs() { method setCommandLineArgs (line 586) | public void setCommandLineArgs( String cmdLineArgs ) { method isSimpleBlocking (line 595) | public boolean isSimpleBlocking() { method setSimpleBlocking (line 599) | public void setSimpleBlocking( boolean simpleBlocking ) { method getSimpleLoggingInterval (line 605) | public String getSimpleLoggingInterval() { method setSimpleLoggingInterval (line 609) | public void setSimpleLoggingInterval( String simpleLoggingInterval ) { class AdvancedConfiguration (line 616) | public class AdvancedConfiguration extends XulEventSourceAdapter { method getOutputKeyClass (line 654) | public String getOutputKeyClass() { method setOutputKeyClass (line 658) | public void setOutputKeyClass( String outputKeyClass ) { method getOutputValueClass (line 666) | public String getOutputValueClass() { method setOutputValueClass (line 670) | public void setOutputValueClass( String outputValueClass ) { method getMapperClass (line 678) | public String getMapperClass() { method setMapperClass (line 682) | public void setMapperClass( String mapperClass ) { method getCombinerClass (line 690) | public String getCombinerClass() { method setCombinerClass (line 694) | public void setCombinerClass( String combinerClass ) { method getReducerClass (line 702) | public String getReducerClass() { method setReducerClass (line 706) | public void setReducerClass( String reducerClass ) { method getInputFormatClass (line 714) | public String getInputFormatClass() { method setInputFormatClass (line 718) | public void setInputFormatClass( String inputFormatClass ) { method getOutputFormatClass (line 726) | public String getOutputFormatClass() { method setOutputFormatClass (line 730) | public void setOutputFormatClass( String outputFormatClass ) { method getInputPath (line 738) | public String getInputPath() { method setInputPath (line 742) | public void setInputPath( String inputPath ) { method getOutputPath (line 750) | public String getOutputPath() { method setOutputPath (line 754) | public void setOutputPath( String outputPath ) { method isBlocking (line 762) | public boolean isBlocking() { method setBlocking (line 766) | public void setBlocking( boolean blocking ) { method getLoggingInterval (line 774) | public String getLoggingInterval() { method setLoggingInterval (line 778) | public void setLoggingInterval( String loggingInterval ) { method getNumMapTasks (line 786) | public String getNumMapTasks() { method setNumMapTasks (line 790) | public void setNumMapTasks( String numMapTasks ) { method getNumReduceTasks (line 798) | public String getNumReduceTasks() { method setNumReduceTasks (line 802) | public void setNumReduceTasks( String numReduceTasks ) { method isSelectedNamedCluster (line 810) | public boolean isSelectedNamedCluster() { method setSelectedNamedCluster (line 814) | public void setSelectedNamedCluster( NamedCluster namedCluster ) { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/entry/hadoop/JobEntryHadoopJobExecutorDialog.java class JobEntryHadoopJobExecutorDialog (line 53) | @PluginDialog( id = "HadoopJobExecutorPlugin", image = "HDE.svg", plugin... method getKeys (line 66) | @Override method handleGetObject (line 71) | @Override method JobEntryHadoopJobExecutorDialog (line 77) | public JobEntryHadoopJobExecutorDialog( Shell parent, JobEntryInterfac... method selectNamedCluster (line 216) | private void selectNamedCluster() { method open (line 228) | public JobEntryInterface open() { method isKnownNamedCluster (line 235) | private boolean isKnownNamedCluster( NamedCluster jobNameCluster, JobE... FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/entry/pmr/JobEntryHadoopTransJobExecutorController.java class JobEntryHadoopTransJobExecutorController (line 60) | public class JobEntryHadoopTransJobExecutorController extends AbstractXu... method JobEntryHadoopTransJobExecutorController (line 162) | public JobEntryHadoopTransJobExecutorController( HadoopClusterDelegate... method getVariableSpace (line 168) | protected VariableSpace getVariableSpace() { method accept (line 178) | public void accept() { method init (line 311) | @SuppressWarnings( { "rawtypes" } ) method setShell (line 452) | public void setShell( Shell shell ) { method closeErrorDialog (line 456) | public void closeErrorDialog() { method setRepository (line 461) | public void setRepository( Repository rep ) { method setJobMeta (line 465) | public void setJobMeta( JobMeta jobMeta ) { method cancel (line 469) | public void cancel() { type StringResultSetter (line 481) | private interface StringResultSetter { method set (line 482) | public void set( String val ); type ObjectIdResultSetter (line 485) | private interface ObjectIdResultSetter { method set (line 486) | public void set( ObjectId val ); method mapTransBrowse (line 489) | public void mapTransBrowse() { method combinerTransBrowse (line 497) | public void combinerTransBrowse() { method reduceTransBrowse (line 505) | public void reduceTransBrowse() { method browseLocalFilesystem (line 513) | public void browseLocalFilesystem( StringResultSetter setter, String o... method browseRepository (line 567) | private void browseRepository( StringResultSetter transSetter ) { method buildRepositoryPath (line 589) | private String buildRepositoryPath( String dir, String file ) { method newUserDefinedItem (line 601) | public void newUserDefinedItem() { method getUserDefined (line 605) | public AbstractModelList getUserDefined() { method getName (line 609) | @Override method getJobEntryName (line 614) | public String getJobEntryName() { method setJobEntryName (line 618) | public void setJobEntryName( String jobEntryName ) { method getHadoopJobName (line 626) | public String getHadoopJobName() { method setHadoopJobName (line 630) | public void setHadoopJobName( String hadoopJobName ) { method getMapTrans (line 638) | public String getMapTrans() { method setMapTrans (line 642) | public void setMapTrans( String mapTrans ) { method getCombinerTrans (line 650) | public String getCombinerTrans() { method setCombinerTrans (line 654) | public void setCombinerTrans( String combinerTrans ) { method getReduceTrans (line 662) | public String getReduceTrans() { method setReduceTrans (line 666) | public void setReduceTrans( String reduceTrans ) { method getMapTransInputStepName (line 674) | public String getMapTransInputStepName() { method setMapTransInputStepName (line 678) | public void setMapTransInputStepName( String mapTransInputStepName ) { method getMapTransOutputStepName (line 686) | public String getMapTransOutputStepName() { method setMapTransOutputStepName (line 690) | public void setMapTransOutputStepName( String mapTransOutputStepName ) { method getCombinerTransInputStepName (line 698) | public String getCombinerTransInputStepName() { method setCombinerTransInputStepName (line 702) | public void setCombinerTransInputStepName( String combinerTransInputSt... method getCombinerTransOutputStepName (line 710) | public String getCombinerTransOutputStepName() { method setCombinerTransOutputStepName (line 714) | public void setCombinerTransOutputStepName( String combinerTransOutput... method getReduceTransInputStepName (line 722) | public String getReduceTransInputStepName() { method setReduceTransInputStepName (line 726) | public void setReduceTransInputStepName( String reduceTransInputStepNa... method getReduceTransOutputStepName (line 734) | public String getReduceTransOutputStepName() { method setReduceTransOutputStepName (line 738) | public void setReduceTransOutputStepName( String reduceTransOutputStep... method invertBlocking (line 746) | public void invertBlocking() { method getJobEntry (line 750) | public JobEntryHadoopTransJobExecutor getJobEntry() { method setJobEntry (line 754) | public void setJobEntry( JobEntryHadoopTransJobExecutor jobEntry ) { method invertSuppressOutputOfMapKey (line 758) | public void invertSuppressOutputOfMapKey() { method isSuppressOutputOfMapKey (line 762) | public boolean isSuppressOutputOfMapKey() { method setSuppressOutputOfMapKey (line 766) | public void setSuppressOutputOfMapKey( boolean suppress ) { method invertSuppressOutputOfMapValue (line 774) | public void invertSuppressOutputOfMapValue() { method isSuppressOutputOfMapValue (line 778) | public boolean isSuppressOutputOfMapValue() { method setSuppressOutputOfMapValue (line 782) | public void setSuppressOutputOfMapValue( boolean suppress ) { method invertSuppressOutputOfKey (line 790) | public void invertSuppressOutputOfKey() { method isSuppressOutputOfKey (line 794) | public boolean isSuppressOutputOfKey() { method setSuppressOutputOfKey (line 798) | public void setSuppressOutputOfKey( boolean suppress ) { method invertSuppressOutputOfValue (line 806) | public void invertSuppressOutputOfValue() { method isSuppressOutputOfValue (line 810) | public boolean isSuppressOutputOfValue() { method setSuppressOutputOfValue (line 814) | public void setSuppressOutputOfValue( boolean suppress ) { method getInputFormatClass (line 822) | public String getInputFormatClass() { method setInputFormatClass (line 826) | public void setInputFormatClass( String inputFormatClass ) { method getOutputFormatClass (line 834) | public String getOutputFormatClass() { method setOutputFormatClass (line 838) | public void setOutputFormatClass( String outputFormatClass ) { method getInputPath (line 846) | public String getInputPath() { method setInputPath (line 850) | public void setInputPath( String inputPath ) { method getOutputPath (line 858) | public String getOutputPath() { method setOutputPath (line 862) | public void setOutputPath( String outputPath ) { method invertCleanOutputPath (line 870) | public void invertCleanOutputPath() { method isCleanOutputPath (line 874) | public boolean isCleanOutputPath() { method setCleanOutputPath (line 878) | public void setCleanOutputPath( boolean cleanOutputPath ) { method isBlocking (line 884) | public boolean isBlocking() { method setBlocking (line 888) | public void setBlocking( boolean blocking ) { method setReducingSingleThreaded (line 896) | public void setReducingSingleThreaded( boolean reducingSingleThreaded ) { method getLoggingInterval (line 904) | public String getLoggingInterval() { method setLoggingInterval (line 908) | public void setLoggingInterval( String loggingInterval ) { method getNumMapTasks (line 916) | public String getNumMapTasks() { method setNumMapTasks (line 920) | public void setNumMapTasks( String numMapTasks ) { method getNumReduceTasks (line 928) | public String getNumReduceTasks() { method setNumReduceTasks (line 932) | public void setNumReduceTasks( String numReduceTasks ) { method getNamedClusters (line 940) | public List getNamedClusters() throws MetaStoreException { method setNamedClusters (line 944) | public void setNamedClusters( List namedClusters ) { method openErrorDialog (line 948) | public void openErrorDialog( String title, String message ) { method invertReducingSingleThreaded (line 959) | public void invertReducingSingleThreaded() { method isReducingSingleThreaded (line 963) | public boolean isReducingSingleThreaded() { method invertCombiningSingleThreaded (line 967) | public void invertCombiningSingleThreaded() { method isCombiningSingleThreaded (line 971) | public boolean isCombiningSingleThreaded() { method setCombiningSingleThreaded (line 975) | public void setCombiningSingleThreaded( boolean combiningSingleThreade... method help (line 981) | public void help() { method editNamedCluster (line 988) | public void editNamedCluster() throws MetaStoreException { method newNamedCluster (line 999) | public void newNamedCluster() throws MetaStoreException { method getJobEntryDialog (line 1008) | private Shell getJobEntryDialog() { method getNamedClusterName (line 1014) | private String getNamedClusterName( NamedCluster namedCluster ) { method namedClustersChanged (line 1024) | @VisibleForTesting method selectedNamedClusterChanged (line 1039) | @VisibleForTesting method setSelectedNamedCluster (line 1054) | public void setSelectedNamedCluster( NamedCluster namedCluster ) { method getSelectedNamedCluster (line 1058) | public NamedCluster getSelectedNamedCluster() { method isSelectedNamedCluster (line 1062) | public boolean isSelectedNamedCluster() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/entry/pmr/JobEntryHadoopTransJobExecutorDialog.java class JobEntryHadoopTransJobExecutorDialog (line 49) | @PluginDialog( id = "HadoopTransJobExecutorPlugin", image = "HDT.svg", p... method getKeys (line 63) | @Override method handleGetObject (line 68) | @Override method JobEntryHadoopTransJobExecutorDialog (line 74) | public JobEntryHadoopTransJobExecutorDialog( method selectNamedCluster (line 216) | private void selectNamedCluster() throws MetaStoreException { method open (line 232) | public JobEntryInterface open() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/step/enter/HadoopEnterDialog.java class HadoopEnterDialog (line 33) | @PluginDialog( id = "HadoopEnterPlugin", image = "MRI.svg", pluginType =... method HadoopEnterDialog (line 44) | public HadoopEnterDialog( Shell parent, Object in, TransMeta tr, Strin... method init (line 55) | public void init() throws Throwable { method getClassForMessages (line 83) | @Override method onAccept (line 88) | @Override method fetchValue (line 113) | private int fetchValue( XulTextbox textbox ) { method fetchValue (line 127) | private int fetchValue( XulMenuList menulist ) { method setTextBoxValue (line 137) | private void setTextBoxValue( String textbox, int value ) { method onCancel (line 147) | @Override method setStepName (line 153) | public void setStepName( String stepname ) { method getStepName (line 157) | public String getStepName() { method getTypes (line 161) | public List getTypes() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/step/enter/HadoopEnterMetaMapper.java class HadoopEnterMetaMapper (line 19) | public class HadoopEnterMetaMapper extends XulEventSourceAdapter { class FieldPositions (line 21) | private class FieldPositions { method FieldPositions (line 25) | public FieldPositions( String[] fieldnames ) { method setKeyIndex (line 41) | public void setKeyIndex( int key ) { method getKeyIndex (line 45) | public int getKeyIndex() { method setValueIndex (line 49) | public void setValueIndex( int value ) { method getValueIndex (line 53) | public int getValueIndex() { method isValid (line 57) | public boolean isValid() { method setInKeyType (line 78) | public void setInKeyType( int arg ) { method setInKeyLength (line 84) | public void setInKeyLength( int arg ) { method setInKeyPrecision (line 90) | public void setInKeyPrecision( int arg ) { method setInValueType (line 96) | public void setInValueType( int arg ) { method setInValueLength (line 102) | public void setInValueLength( int arg ) { method setInValuePrecision (line 108) | public void setInValuePrecision( int arg ) { method getInKeyType (line 114) | public int getInKeyType() { method getInKeyLength (line 118) | public int getInKeyLength() { method getInKeyPrecision (line 122) | public int getInKeyPrecision() { method getInValueType (line 126) | public int getInValueType() { method getInValueLength (line 130) | public int getInValueLength() { method getInValuePrecision (line 134) | public int getInValuePrecision() { method loadMeta (line 143) | public void loadMeta( HadoopEnterMeta meta ) { method saveMeta (line 169) | public void saveMeta( HadoopEnterMeta meta ) { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/step/exit/HadoopExitDialog.java class HadoopExitDialog (line 35) | @PluginDialog( id = "HadoopExitPlugin", image = "MRO.svg", pluginType = ... method HadoopExitDialog (line 50) | public HadoopExitDialog( Shell parent, Object in, TransMeta tr, String... method init (line 55) | public void init() throws Throwable { method getClassForMessages (line 114) | @Override method onAccept (line 119) | @Override method onCancel (line 133) | @Override method setStepName (line 139) | public void setStepName( String stepname ) { method getStepName (line 143) | public String getStepName() { method getOutKeyFields (line 147) | public List getOutKeyFields() { method getOutValueFields (line 151) | public List getOutValueFields() { FILE: kettle-plugins/mapreduce/core/src/main/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/step/exit/HadoopExitMetaMapper.java class HadoopExitMetaMapper (line 19) | public class HadoopExitMetaMapper extends XulEventSourceAdapter { method setOutKeyFieldname (line 26) | public void setOutKeyFieldname( String arg ) { method getOutKeyFieldname (line 32) | public String getOutKeyFieldname() { method setOutValueFieldname (line 36) | public void setOutValueFieldname( String arg ) { method getOutValueFieldname (line 42) | public String getOutValueFieldname() { method loadMeta (line 51) | public void loadMeta( HadoopExitMeta meta ) { method saveMeta (line 61) | public void saveMeta( HadoopExitMeta meta ) { FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/DialogClassUtilTest.java class DialogClassUtilTest (line 32) | public class DialogClassUtilTest { method testConstructor (line 33) | @Test method testJobEntryHadoopTransJobExecutor (line 38) | @Test method testJobEntryHadoopJobExecutor (line 44) | @Test method testHadoopExit (line 50) | @Test method testHadoopEnter (line 56) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/JobEntryHadoopTransJobExecutorTest.java class JobEntryHadoopTransJobExecutorTest (line 32) | public class JobEntryHadoopTransJobExecutorTest { method setup (line 42) | @BeforeClass method loadRep_num_map_tasks_null (line 57) | @Test method loadRep_num_map_tasks_empty (line 64) | @Test method loadRep_num_map_tasks_variable (line 71) | @Test method loadRep_num_map_tasks_number (line 78) | @Test method loadRep_num_reduce_tasks_null (line 85) | @Test method loadRep_num_reduce_tasks_empty (line 92) | @Test method loadRep_num_reduce_tasks_variable (line 99) | @Test method loadRep_num_reduce_tasks_number (line 106) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/NamedClusterLoadSaveUtilTest.java class NamedClusterLoadSaveUtilTest (line 56) | public class NamedClusterLoadSaveUtilTest { method setup (line 69) | @Before method addTag (line 84) | private void addTag( StringBuilder builder, String tag, String value ) { method parseNamedClusterXml (line 90) | private Node parseNamedClusterXml( String namedClusterXml ) method testLoadClusterConfigFoundXml (line 96) | @Test method testLoadClusterConfigNotFoundXml (line 113) | @Test method testLoadClusterConfigFoundRepo (line 142) | @Test method testLoadClusterConfigNotFoundRepo (line 154) | @Test method testLoadClusterConfigNoNodeOrRep (line 182) | @Test method testLoadClusterConfigExceptions (line 188) | @Test method testLoadClusterConfigNoMetastore (line 221) | @Test method testGetXmlNamedCluster_NoNPEWhenNCIsNull (line 253) | @Test method testSaveNamedClusterRep_NoNPEWhenNCIsNull (line 265) | @Test method testSaveNamedClusterRep (line 277) | @Test method testSaveNamedClusterRepNoName (line 310) | @Test method testSaveNamedClusterRepExceptionReading (line 336) | @Test method testSaveNamedClusterRepNotContains (line 369) | @Test method testGetXmlNamedCluster (line 400) | @Test method testGetXmlNamedClusterEmptyName (line 433) | @Test method testGetXmlNamedClusterNullMetastore (line 458) | @Test method testGetXmlNamedClusterNotContains (line 486) | @Test method testGetXmlNamedClusterMetastoreException (line 517) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/UserDefinedItemTest.java class UserDefinedItemTest (line 28) | public class UserDefinedItemTest { method setup (line 31) | @Before method testGetSetName (line 36) | @Test method testGetSetValue (line 43) | @Test method testAddRemovePropertyChangeListener (line 50) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/hadoop/JobEntryHadoopJobExecutorTest.java class JobEntryHadoopJobExecutorTest (line 37) | public class JobEntryHadoopJobExecutorTest { method setup (line 48) | @Before method testResolveJobUrl (line 63) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/entry/pmr/JobEntryHadoopTransJobExecutorTest.java class JobEntryHadoopTransJobExecutorTest (line 36) | public class JobEntryHadoopTransJobExecutorTest { method setup (line 43) | @Before method testLoadTransMetaLocal (line 52) | @Test method testLoadTransMetaRepo (line 63) | @Test method testLoadTransMetaRepoReference (line 77) | @Test method testLoadTransMetaRepoDirFile (line 91) | @Test method testProperVariableSpaceWhenLoadTransMetaFromRepo (line 103) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/HadoopExitMetaTest.java class HadoopExitMetaTest (line 26) | public class HadoopExitMetaTest { method getFields (line 28) | @Test method getFields_invalid_key (line 49) | @Test method getFields_invalid_value (line 78) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/enter/HadoopEnterMetaInjectionTest.java class HadoopEnterMetaInjectionTest (line 20) | public class HadoopEnterMetaInjectionTest extends BaseMetadataInjectionT... method setup (line 21) | @Before method test (line 26) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/enter/HadoopEnterMetaTest.java class HadoopEnterMetaTest (line 25) | public class HadoopEnterMetaTest { method setup (line 29) | @Before method testConstructor (line 34) | @Test method testSetDefault (line 40) | @Test method testGetDialogClassName (line 47) | @Test method testSetters (line 52) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExitDataTest.java class HadoopExitDataTest (line 29) | public class HadoopExitDataTest { method setup (line 33) | @Before method testInitNullRowMeta (line 39) | @Test method testInit (line 45) | @Test method testGetOutKeyOrdinal (line 70) | @Test method testGetOutValueOrdinal (line 75) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExitMetaInjectionTest.java class HadoopExitMetaInjectionTest (line 20) | public class HadoopExitMetaInjectionTest extends BaseMetadataInjectionTe... method setup (line 21) | @Before method test (line 26) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExitMetaTest.java class HadoopExitMetaTest (line 47) | public class HadoopExitMetaTest { method setup (line 51) | @Before method testLoadSaveXml (line 57) | @Test method testSaveRep (line 74) | @Test method testReadRep (line 93) | @Test method testSetDefault (line 111) | @Test method testGetFields (line 124) | @Test method testGetFieldsNullKey (line 152) | @Test( expected = KettleStepException.class ) method testGetFieldsNullValue (line 171) | @Test( expected = KettleStepException.class ) method assertSingleRemark (line 192) | private void assertSingleRemark( List remarks, i... method testCheckNoDataStream (line 200) | @Test method testCheckEmptyDataStream (line 210) | @Test method testCheckNoSpecifiedFieldsNullOutKeyFieldName (line 222) | @Test method testCheckNoSpecifiedFieldsNullOutValueFieldName (line 236) | @Test method testCheckNotReceivingSpecifiedKeyFields (line 252) | @Test method testCheckNotReceivingSpecifiedValFields (line 271) | @Test method testCheckOk (line 290) | @Test method testGetStep (line 309) | @Test method testClone (line 320) | @Test method testGetStepData (line 325) | @Test method testGetDialogClassName (line 330) | @Test FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/step/exit/HadoopExitTest.java class HadoopExitTest (line 39) | public class HadoopExitTest { method setup (line 44) | @Before method teardown (line 56) | @After method testProcessRow (line 61) | @Test( timeout = 5000 ) FILE: kettle-plugins/mapreduce/core/src/test/java/org/pentaho/big/data/kettle/plugins/mapreduce/ui/entry/pmr/JobEntryHadoopTransJobExecutorControllerTest.java class JobEntryHadoopTransJobExecutorControllerTest (line 46) | public class JobEntryHadoopTransJobExecutorControllerTest { method setUp (line 67) | @Before method testEditNamedCluster_NamedClusterIsSelected (line 92) | @Test method testEditNamedCluster_NamedClusterIsNOTSelected (line 106) | @Test method testNewNamedCluster_NamedClusterIsSelected (line 118) | @Test method testNewNamedCluster_NamedClusterIsNotSelected (line 132) | @Test FILE: kettle-plugins/oozie/core/src/main/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorConfig.java class OozieJobExecutorConfig (line 32) | public class OozieJobExecutorConfig extends BlockableJobConfig implement... method OozieJobExecutorConfig (line 51) | public OozieJobExecutorConfig() { method getOozieUrl (line 55) | @Bindable method setOozieUrl (line 60) | @Bindable method getClusterName (line 67) | @Bindable method setClusterName (line 72) | @Bindable method getNamedCluster (line 77) | @Bindable method setNamedCluster (line 82) | @Bindable method getNamedClusters (line 91) | @Bindable method setNamedClusters (line 96) | @Bindable method getOozieWorkflowConfig (line 101) | @Bindable method setOozieWorkflowConfig (line 106) | @Bindable method getOozieWorkflow (line 113) | @Bindable method setOozieWorkflow (line 118) | @Bindable method getWorkflowProperties (line 130) | public List getWorkflowProperties() { method setWorkflowProperties (line 137) | public void setWorkflowProperties( List workflowPropert... method getMode (line 147) | public String getMode() { method getModeAsEnum (line 151) | public JobEntryMode getModeAsEnum() { method setMode (line 165) | public void setMode( JobEntryMode mode ) { method setMode (line 169) | public void setMode( String mode ) { FILE: kettle-plugins/oozie/core/src/main/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorJobEntry.java class OozieJobExecutorJobEntry (line 58) | @JobEntry( id = "OozieJobExecutor", name = "Oozie.JobExecutor.PluginName", method OozieJobExecutorJobEntry (line 77) | public OozieJobExecutorJobEntry() { method OozieJobExecutorJobEntry (line 83) | public OozieJobExecutorJobEntry( method createJobConfig (line 93) | @Override method getValidationWarnings (line 98) | public List getValidationWarnings( OozieJobExecutorConfig conf... method verifyJobConfiguration (line 138) | private void verifyJobConfiguration( OozieJobExecutorConfig config, bo... method checkOozieConnection (line 167) | private void checkOozieConnection( OozieJobExecutorConfig config, bool... method verifyOozieUrl (line 191) | private void verifyOozieUrl( OozieJobExecutorConfig config, boolean ch... method getNamedCluster (line 214) | private NamedCluster getNamedCluster( OozieJobExecutorConfig config ) ... method getValidationWarnings (line 244) | @Override method getPropertiesFromFile (line 249) | public Properties getPropertiesFromFile( OozieJobExecutorConfig config... method getPropertiesFromFile (line 253) | public static Properties getPropertiesFromFile( Bowl bowl, OozieJobExe... method getProperties (line 264) | public Properties getProperties( OozieJobExecutorConfig config ) throw... method getProperties (line 268) | public static Properties getProperties( Bowl bowl, OozieJobExecutorCon... method getExecutionRunnable (line 285) | @Override method handleUncaughtThreadException (line 359) | @Override method getEffectiveOozieUrl (line 365) | @VisibleForTesting method getHadoopClientServices (line 380) | public HadoopClientServices getHadoopClientServices() { method getHadoopClientServices (line 384) | public HadoopClientServices getHadoopClientServices( OozieJobExecutorC... method getRuntimeTestActionService (line 400) | public RuntimeTestActionService getRuntimeTestActionService() { method getRuntimeTester (line 404) | public RuntimeTester getRuntimeTester() { method getNamedClusterService (line 408) | public NamedClusterService getNamedClusterService() { FILE: kettle-plugins/oozie/core/src/main/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorJobEntryController.java class OozieJobExecutorJobEntryController (line 53) | public class OozieJobExecutorJobEntryController extends method OozieJobExecutorJobEntryController (line 78) | public OozieJobExecutorJobEntryController( JobMeta jobMeta, XulDomCont... method beforeInit (line 91) | @Override method syncModel (line 97) | @Override method preFillAdvancedArgs (line 119) | private void preFillAdvancedArgs() { method shouldUseAdvancedProperties (line 140) | protected boolean shouldUseAdvancedProperties() { method setJobEntryMode (line 149) | protected void setJobEntryMode( JobEntryMode mode ) { method createBindings (line 153) | @Override method getNamedClusters (line 243) | @VisibleForTesting List getNamedClusters() { method selectNamedCluster (line 252) | public void selectNamedCluster( String configName ) { method editNamedCluster (line 263) | public void editNamedCluster() { method populateNamedClusters (line 276) | protected void populateNamedClusters() { method newNamedCluster (line 281) | public void newNamedCluster() { method addNewProperty (line 292) | @Bindable method removeProperty (line 303) | @Bindable method accept (line 322) | @Override method getAdvancedArguments (line 341) | public AbstractModelList getAdvancedArguments() { method setAdvancedArguments (line 345) | public void setAdvancedArguments( AbstractModelList adv... method isAdvancedArgumentsChanged (line 350) | @Bindable method getDialogElementId (line 355) | @Override method getModeToggleLabelElementId (line 363) | @Bindable method getModeToggleLabel (line 368) | @Bindable method setModeToggleLabel (line 373) | @Bindable method setModeToggleLabel (line 380) | @Override method testSettings (line 399) | @Bindable method browseWorkflowConfig (line 425) | @Bindable method getFileFilters (line 447) | @Override method getFileFilterNames (line 452) | @Override FILE: kettle-plugins/oozie/core/src/main/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorJobEntryDialog.java class OozieJobExecutorJobEntryDialog (line 42) | @PluginDialog( id = "OozieJobExecutor", image = "oozie-job-executor.svg"... method OozieJobExecutorJobEntryDialog (line 53) | public OozieJobExecutorJobEntryDialog( Shell parent, JobEntryInterface... method init (line 59) | protected void init( OozieJobExecutorJobEntry jobEntry ) throws XulExc... method createController (line 88) | protected OozieJobExecutorJobEntryController createController( OozieJo... method getMessage (line 95) | private String getMessage( String key ) { method open (line 99) | @Override method getXulFile (line 104) | protected String getXulFile() { method handleGetObject (line 109) | @Override method getKeys (line 114) | @Override FILE: kettle-plugins/oozie/core/src/test/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorConfigTest.java class OozieJobExecutorConfigTest (line 32) | public class OozieJobExecutorConfigTest { method init (line 37) | @Before method testAddPropertyChangeListener (line 42) | @Test method testAddPropertyChangeListener_propertyName (line 61) | @Test method testGettersAndSetters (line 88) | @Test FILE: kettle-plugins/oozie/core/src/test/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorControllerTest.java class OozieJobExecutorControllerTest (line 62) | public class OozieJobExecutorControllerTest { method init (line 71) | @BeforeClass method before (line 76) | @Before method testSetModeToggleLabel_JobEntryMode (line 98) | @Test method testGetNamedClusterOnChangedDataInClusterNamedService (line 110) | @Test method testReturnEmptyCollectionOnNamedClusterServiceThrowMetaStoreException (line 133) | @Test method testConfigNamedClustersChangedOnPopulateNamedClusters (line 149) | @Test method testSetModeToggleLabel_UnsupportedJobEntryMode (line 175) | @Test( expected = RuntimeException.class ) method testSyncModel_quickSetupMode (line 181) | @Test method testSyncModel_advancedMode (line 194) | @Test method testSyncModel_advanced_addedProp (line 209) | @Test method testSyncModel_advanced_removedProp (line 225) | @Ignore method testSyncModel_advanced_editProp (line 242) | @Test method testToggleMode (line 262) | @Test method testShouldUseAdvancedProperties_basicMode (line 294) | @Test method testAddProperty_exception (line 301) | @Test method getGoodConfig (line 314) | private OozieJobExecutorConfig getGoodConfig() { class TestOozieJobExecutorController (line 324) | class TestOozieJobExecutorController extends OozieJobExecutorJobEntryC... method TestOozieJobExecutorController (line 331) | TestOozieJobExecutorController() { method TestOozieJobExecutorController (line 335) | public TestOozieJobExecutorController( XulDeck modeDeck ) { method showErrorDialog (line 347) | @Override method showErrorDialog (line 352) | @Override method showInfoDialog (line 357) | @Override method getShownErrors (line 362) | public List getShownErrors() { method wasInfoShown (line 366) | public boolean wasInfoShown() { method setJobEntry (line 370) | public void setJobEntry( OozieJobExecutorJobEntry je ) { method showConfirmationDialog (line 374) | @Override method toggleMode (line 379) | @Override class TestOozieJobExecutorJobEntry (line 388) | public class TestOozieJobExecutorJobEntry extends OozieJobExecutorJobE... method getValidationWarnings (line 389) | @Override FILE: kettle-plugins/oozie/core/src/test/java/org/pentaho/big/data/kettle/plugins/oozie/OozieJobExecutorJobEntryTest.java class OozieJobExecutorJobEntryTest (line 62) | @RunWith(MockitoJUnitRunner.class) method init (line 85) | @BeforeClass method testLoadXml (line 90) | @Test method testLoadXml_customProps (line 120) | @Test method testGetValidationWarnings_emptyConfig (line 157) | @Test method testGetProperties (line 170) | @Test method testGetProperties_VariableizedWorkflowPath (line 179) | @Test method testGetProperties_fromAdvancedProperties (line 193) | @Test method getEffectiveOozieUrlFromCluster (line 214) | @Test method oozieUrlSubstitutedInVariableSpace (line 223) | @Test method getStubbedOozieJobExecutorJobEntry (line 237) | private OozieJobExecutorJobEntry getStubbedOozieJobExecutorJobEntry() { method getFailingTestOozieClient (line 245) | private TestOozieClient getFailingTestOozieClient() { method getSucceedingTestOozieClient (line 252) | private TestOozieClient getSucceedingTestOozieClient() { method getBadConfigTestOozieClient (line 259) | private TestOozieClient getBadConfigTestOozieClient() { class TestOozieClient (line 271) | class TestOozieClient extends OozieClient { method TestOozieClient (line 277) | TestOozieClient( WorkflowJob.Status returnStatus, boolean isValidWS,... method validateWSVersion (line 283) | @Override method getProtocolUrl (line 291) | @Override method run (line 299) | @Override method getJobLog (line 318) | @Override method getJobInfo (line 323) | @Override class TestWorkflowJob (line 330) | class TestWorkflowJob implements WorkflowJob { method TestWorkflowJob (line 333) | TestWorkflowJob( Status status ) { method setStatus (line 337) | public void setStatus( Status status ) { method getAppPath (line 341) | @Override method getAppName (line 346) | @Override method getId (line 351) | @Override method getConf (line 356) | @Override method getStatus (line 361) | @Override method getLastModifiedTime (line 366) | @Override method getCreatedTime (line 371) | @Override method getStartTime (line 376) | @Override method getEndTime (line 381) | @Override method getUser (line 386) | @Override method getGroup (line 391) | @Override method getAcl (line 396) | @Override method getRun (line 401) | @Override method getConsoleUrl (line 406) | @Override method getParentId (line 411) | @Override method getActions (line 416) | @Override method getExternalId (line 421) | @Override FILE: kettle-plugins/pig/core/src/main/java/org/pentaho/big/data/kettle/plugins/pig/JobEntryPigScriptExecutor.java class JobEntryPigScriptExecutor (line 63) | @JobEntry( id = "HadoopPigScriptExecutorPlugin", image = "ui/images/depr... method JobEntryPigScriptExecutor (line 110) | public JobEntryPigScriptExecutor() { method JobEntryPigScriptExecutor (line 117) | public JobEntryPigScriptExecutor( NamedClusterService namedClusterServ... method loadClusterConfig (line 126) | private void loadClusterConfig( ObjectId id_jobentry, Repository rep, ... method getXML (line 180) | public String getXML() { method loadXML (line 224) | @Override method loadRep (line 256) | @Override method saveRep (line 290) | @Override method evaluates (line 330) | public boolean evaluates() { method getEnableBlocking (line 339) | public boolean getEnableBlocking() { method setEnableBlocking (line 348) | public void setEnableBlocking( boolean block ) { method getLocalExecution (line 357) | public boolean getLocalExecution() { method setLocalExecution (line 366) | public void setLocalExecution( boolean l ) { method getScriptFilename (line 375) | public String getScriptFilename() { method setScriptFilename (line 384) | public void setScriptFilename( String filename ) { method getScriptParameters (line 393) | public Map getScriptParameters() { method setScriptParameters (line 402) | public void setScriptParameters( Map params ) { method getNamedCluster (line 406) | public NamedCluster getNamedCluster() { method setNamedCluster (line 410) | public void setNamedCluster( NamedCluster namedCluster ) { method getNamedClusterService (line 414) | public NamedClusterService getNamedClusterService() { method getRuntimeTestActionService (line 418) | public RuntimeTestActionService getRuntimeTestActionService() { method getRuntimeTester (line 422) | public RuntimeTester getRuntimeTester() { method execute (line 431) | public Result execute( final Result result, int arg1 ) throws KettleEx... method processScriptExecutionResult (line 496) | protected void processScriptExecutionResult( PigResult pigResult, Resu... method setLog (line 526) | @VisibleForTesting FILE: kettle-plugins/pig/core/src/main/java/org/pentaho/big/data/kettle/plugins/pig/JobEntryPigScriptExecutorDialog.java class JobEntryPigScriptExecutorDialog (line 69) | @PluginDialog( id = "HadoopPigScriptExecutorPlugin", image = "PIG.svg", ... method JobEntryPigScriptExecutorDialog (line 98) | public JobEntryPigScriptExecutorDialog( method open (line 107) | public JobEntryInterface open() { method cancel (line 348) | private void cancel() { method dispose (line 358) | public void dispose() { method setEnabledStatus (line 364) | protected void setEnabledStatus() { method openDialog (line 375) | protected void openDialog() { method getData (line 402) | protected void getData() { method ok (line 434) | protected void ok() { FILE: kettle-plugins/pig/core/src/test/java/org/pentaho/big/data/kettle/plugins/pig/JobEntryPigScriptExecutorTest.java class JobEntryPigScriptExecutorTest (line 55) | public class JobEntryPigScriptExecutorTest { method setup (line 75) | @Before method testLoadSave (line 112) | @Test method testGetNamedClusterService (line 141) | @Test method testGetRuntimeTestActionService (line 146) | @Test method testGetRuntimeTester (line 151) | @Test method testExecuteNoScriptFile (line 156) | @Test( expected = KettleException.class ) method testNonzeroBlocking (line 168) | @Test method testGettingFailedStatusIfExecutionException (line 183) | @Test method testGettingFailedStatusIfNrErrors (line 195) | @Test FILE: kettle-plugins/pig/core/src/test/java/org/pentaho/big/data/kettle/plugins/pig/PigNamedClusterValidator.java class PigNamedClusterValidator (line 24) | public class PigNamedClusterValidator implements FieldLoadSaveValidator<... method getTestObject (line 27) | @Override public NamedCluster getTestObject() { method validateTestObject (line 43) | @Override public boolean validateTestObject( NamedCluster namedCluster... FILE: kettle-plugins/spark/core/src/main/java/org/pentaho/di/job/entries/spark/JobEntrySparkSubmit.java class JobEntrySparkSubmit (line 69) | @JobEntry( image = "org/pentaho/di/ui/job/entries/spark/img/spark.svg", method JobEntrySparkSubmit (line 97) | public JobEntrySparkSubmit( String n ) { method JobEntrySparkSubmit (line 101) | public JobEntrySparkSubmit() { method clone (line 105) | public Object clone() { method getXML (line 115) | public String getXML() { method loadXML (line 147) | public void loadXML( Node entrynode, List databases, Lis... method loadRep (line 186) | public void loadRep( Repository rep, IMetaStore metaStore, ObjectId id... method saveRep (line 218) | public void saveRep( Repository rep, IMetaStore metaStore, ObjectId id... method getScriptPath (line 250) | public String getScriptPath() { method setScriptPath (line 259) | public void setScriptPath( String scriptPath ) { method getMaster (line 268) | public String getMaster() { method setMaster (line 277) | public void setMaster( String master ) { method getConfigParams (line 286) | public List getConfigParams() { method setConfigParams (line 293) | public void setConfigParams( List configParams ) { method getLibs (line 302) | public Map getLibs() { method setLibs (line 309) | public void setLibs( Map docs ) { method getJar (line 318) | public String getJar() { method setJar (line 327) | public void setJar( String jar ) { method getClassName (line 336) | public String getClassName() { method setClassName (line 345) | public void setClassName( String className ) { method getArgs (line 354) | public String getArgs() { method setArgs (line 363) | public void setArgs( String args ) { method getExecutorMemory (line 372) | public String getExecutorMemory() { method setExecutorMemory (line 381) | public void setExecutorMemory( String executorMemory ) { method getDriverMemory (line 390) | public String getDriverMemory() { method setDriverMemory (line 399) | public void setDriverMemory( String driverMemory ) { method isBlockExecution (line 408) | public boolean isBlockExecution() { method setBlockExecution (line 417) | public void setBlockExecution( boolean blockExecution ) { method getJobType (line 426) | public String getJobType() { method setJobType (line 435) | public void setJobType( String jobType ) { method getPyFile (line 444) | public String getPyFile() { method setPyFile (line 453) | public void setPyFile( String pyFile ) { method getCmds (line 463) | public List getCmds() throws IOException { method validate (line 528) | @VisibleForTesting method execute (line 562) | public Result execute( Result result, int nr ) { method waitForThreadsFinishToRead (line 672) | private void waitForThreadsFinishToRead( Thread errorLoggerThread, Thr... method prepareProcessThreadsToStop (line 679) | private void prepareProcessThreadsToStop( Process proc, Thread errorLo... method killChildProcesses (line 692) | @VisibleForTesting method evaluates (line 707) | public boolean evaluates() { method check (line 714) | @Override method parseCommandLine (line 734) | public List parseCommandLine( String commandLineString ) throw... method afterExecution (line 768) | @Override method beforeExecution (line 773) | @Override method resolvePath (line 777) | private String resolvePath( String path ) { FILE: kettle-plugins/spark/core/src/main/java/org/pentaho/di/job/entries/spark/JobEntrySparkSubmitAnalyzer.java class JobEntrySparkSubmitAnalyzer (line 31) | public class JobEntrySparkSubmitAnalyzer extends JobEntryAnalyzer getChildProcesses() throws IOException { method killChildProcesses (line 82) | public String killChildProcesses() throws IOException { method getPID (line 96) | public static int getPID( Process proc ) { method getWinProcessPID (line 116) | public int getWinProcessPID() { FILE: kettle-plugins/spark/core/src/main/java/org/pentaho/di/ui/job/entries/spark/JobEntrySparkSubmitDialog.java class JobEntrySparkSubmitDialog (line 85) | @PluginDialog( id = MetaverseAnalyzers.JobEntrySparkSubmitAnalyzer.ID, method main (line 128) | public static void main( String[] a ) { method JobEntrySparkSubmitDialog (line 140) | public JobEntrySparkSubmitDialog( Shell parent, JobEntryInterface jobE... method open (line 145) | @Override method createContents (line 178) | private void createContents() { method addOnArgumentsTab (line 312) | private void addOnArgumentsTab( Composite tab ) { method addOnOptionsTab (line 336) | private void addOnOptionsTab( Composite tab ) { method addOnFilesTab (line 376) | private void addOnFilesTab( Composite tab ) { method addOnFilesTabJavaScala (line 423) | private void addOnFilesTabJavaScala( Composite panel ) { method addOnFilesTabPython (line 454) | private void addOnFilesTabPython( Composite panel ) { method widgetSelected (line 475) | public void widgetSelected( SelectionEvent e ) { method modifyText (line 491) | public void modifyText( ModifyEvent e ) { method widgetSelected (line 497) | public void widgetSelected( SelectionEvent e ) { method widgetSelected (line 553) | public void widgetSelected( SelectionEvent e ) { method widgetSelected (line 569) | public void widgetSelected( SelectionEvent e ) { method widgetSelected (line 585) | @Override method dispose (line 611) | public void dispose() { method cancel (line 617) | private void cancel() { method getData (line 623) | public void getData() { method ok (line 673) | protected void ok() { method fd (line 727) | private FormData fd( FormAttachment... att ) { method fdwidth (line 744) | private FormData fdwidth( int width, FormAttachment... att ) { method fa (line 750) | private FormAttachment fa( int numerator, int offset ) { method fa (line 754) | private FormAttachment fa( Control control, int offset ) { method fa (line 758) | private FormAttachment fa( Control control, int offset, int alignment ) { class ColumnsResizer (line 762) | public class ColumnsResizer implements Listener { method ColumnsResizer (line 765) | public ColumnsResizer( int... weights ) { method handleEvent (line 769) | @Override FILE: kettle-plugins/spark/core/src/test/java/org/pentaho/di/job/entries/spark/JobEntrySparkSubmitLoadSaveTest.java class JobEntrySparkSubmitLoadSaveTest (line 26) | public class JobEntrySparkSubmitLoadSaveTest extends JobEntryLoadSaveTes... method getJobEntryClass (line 27) | @Override method createTypeValidatorsMap (line 32) | @Override method listCommonAttributes (line 40) | @Override FILE: kettle-plugins/spark/core/src/test/java/org/pentaho/di/job/entries/spark/JobEntrySparkSubmitTest.java class JobEntrySparkSubmitTest (line 33) | public class JobEntrySparkSubmitTest { method testGetCmds (line 34) | @Test method testValidate (line 70) | @Test method testArgsParsing (line 91) | @Test method testCheck (line 101) | @Test FILE: kettle-plugins/spark/core/src/test/java/org/pentaho/di/job/entries/spark/PatternMatchingStreamLoggerTest.java class PatternMatchingStreamLoggerTest (line 33) | public class PatternMatchingStreamLoggerTest { method setUp (line 40) | @Before method createTestee (line 46) | private PatternMatchingStreamLogger createTestee( String[] patterns, f... method doTest (line 57) | private void doTest( String[] patterns, boolean listenerShouldBeNotifi... method positiveTest (line 72) | @Test method negativeTest (line 77) | @Test FILE: kettle-plugins/spark/core/src/test/java/org/pentaho/di/job/entries/spark/WinProcessTest.java class WinProcessTest (line 31) | public class WinProcessTest { method setUp (line 38) | @BeforeClass method getPIDWhenProcessIsNull (line 51) | @Test method getPIDWhenProcessExists (line 57) | @Test method createWinProcessWrapperAndKillProcess (line 77) | @Test method tryToKillChildProcessIfItNotExists (line 102) | @Test method killExistingChildProcess (line 124) | @Test method isChildProcessAlive (line 212) | private static boolean isChildProcessAlive( Integer parentPID, String ... FILE: kettle-plugins/spark/core/src/test/resources/ChildProcessTester.java class ChildProcessTester (line 14) | public class ChildProcessTester implements Runnable { method run (line 18) | @Override public void run() { method main (line 30) | public static void main( String[] args ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/AbstractSqoopJobEntry.java class AbstractSqoopJobEntry (line 67) | public abstract class AbstractSqoopJobEntry exten... method getToolName (line 103) | protected abstract String getToolName(); method AbstractSqoopJobEntry (line 105) | protected AbstractSqoopJobEntry( NamedClusterService namedClusterService, method loadXML (line 115) | @Override method loadRep (line 127) | @Override method getXML (line 142) | @Override public String getXML() { method saveRep (line 146) | @Override public void saveRep( Repository rep, ObjectId id_job ) throw... method loadNamedCluster (line 151) | private boolean loadNamedCluster( IMetaStore metaStore ) { method loadNamedCluster (line 163) | private boolean loadNamedCluster( String clusterName ) { method loadUsedDataBaseConnection (line 181) | @VisibleForTesting method attachLoggingAppenders (line 195) | public void attachLoggingAppenders() { method removeLoggingAppenders (line 211) | public void removeLoggingAppenders() { method getValidationWarnings (line 235) | @Override method handleUncaughtThreadException (line 263) | @Override method getExecutionRunnable (line 270) | @Override method executeSqoop (line 286) | protected void executeSqoop( Result jobResult ) { method configure (line 357) | public void configure( S sqoopConfig, Properties properties ) throws K... method configureDatabase (line 366) | public void configureDatabase( S sqoopConfig ) throws KettleException { method isDatabaseSupported (line 386) | public boolean isDatabaseSupported( Class... method getUsedDatabaseConnections (line 391) | @Override method getUsedDbConnection (line 396) | public DatabaseMeta getUsedDbConnection() { method setUsedDbConnection (line 400) | public void setUsedDbConnection( DatabaseMeta usedDbConnection ) { method setLogChannel (line 404) | @VisibleForTesting method getNamedClusterService (line 409) | public NamedClusterService getNamedClusterService() { method getRuntimeTestActionService (line 413) | public RuntimeTestActionService getRuntimeTestActionService() { method getRuntimeTester (line 417) | public RuntimeTester getRuntimeTester() { method getString (line 421) | private static String getString( String key, String... parameters ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/ArgumentWrapper.java class ArgumentWrapper (line 24) | public class ArgumentWrapper implements XulEventSource { method ArgumentWrapper (line 35) | public ArgumentWrapper( String name, String displayName, method validateAccessors (line 53) | private void validateAccessors( Method getter, Method setter ) { method getName (line 62) | public String getName() { method setName (line 66) | public void setName( String name ) { method getDisplayName (line 70) | public String getDisplayName() { method setDisplayName (line 74) | public void setDisplayName( String displayName ) { method setValue (line 78) | public void setValue( String value ) { method getValue (line 90) | public String getValue() { method isFlag (line 98) | public boolean isFlag() { method setFlag (line 102) | public void setFlag( boolean flag ) { method equals (line 113) | @Override method hashCode (line 127) | @Override method addPropertyChangeListener (line 132) | @Override method removePropertyChangeListener (line 137) | @Override method getPrefix (line 142) | public String getPrefix() { method setPrefix (line 146) | public void setPrefix( String prefix ) { method getOrder (line 150) | public int getOrder() { method setOrder (line 154) | public void setOrder( int order ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/DatabaseItem.java class DatabaseItem (line 19) | public class DatabaseItem { method DatabaseItem (line 23) | public DatabaseItem( String name ) { method DatabaseItem (line 27) | public DatabaseItem( String name, String displayName ) { method getName (line 32) | public String getName() { method getDisplayName (line 36) | public String getDisplayName() { method toString (line 45) | @Override method equals (line 50) | @Override method hashCode (line 66) | @Override FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/LoggingProxy.java class LoggingProxy (line 24) | public class LoggingProxy extends PrintStream { method LoggingProxy (line 40) | public LoggingProxy( PrintStream stream, Logger logger, Level level ) { method print (line 47) | @Override method getWrappedStream (line 55) | public PrintStream getWrappedStream() { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopConfig.java class SqoopConfig (line 39) | public abstract class SqoopConfig extends BlockableJobConfig implements ... method getAdvancedArgumentsList (line 276) | public AbstractModelList getAdvancedArgumentsList() { method getNamedCluster (line 317) | public NamedCluster getNamedCluster() { method setNamedCluster (line 324) | public void setNamedCluster( NamedCluster namedCluster ) { method createClusterTemplate (line 332) | protected abstract NamedCluster createClusterTemplate(); method clone (line 334) | @Override method setConnectionInfo (line 351) | public void setConnectionInfo( String database, String connect, String... method copyConnectionInfoFromAdvanced (line 361) | public void copyConnectionInfoFromAdvanced() { method copyConnectionInfoToAdvanced (line 372) | public void copyConnectionInfoToAdvanced() { method getDatabase (line 380) | public String getDatabase() { method setDatabase (line 384) | public void setDatabase( String database ) { method propertyChange (line 388) | protected String propertyChange( String propertyName, String oldValue,... method getSchema (line 393) | public String getSchema() { method setSchema (line 397) | public void setSchema( String schema ) { method getConnect (line 401) | public String getConnect() { method setConnect (line 405) | public void setConnect( String connect ) { method getUsername (line 409) | public String getUsername() { method setUsername (line 413) | public void setUsername( String username ) { method getPassword (line 417) | public String getPassword() { method setPassword (line 421) | public void setPassword( String password ) { method getConnectFromAdvanced (line 425) | public String getConnectFromAdvanced() { method setConnectFromAdvanced (line 429) | public void setConnectFromAdvanced( String connectFromAdvanced ) { method getUsernameFromAdvanced (line 433) | public String getUsernameFromAdvanced() { method setUsernameFromAdvanced (line 437) | public void setUsernameFromAdvanced( String usernameFromAdvanced ) { method getPasswordFromAdvanced (line 441) | public String getPasswordFromAdvanced() { method setPasswordFromAdvanced (line 445) | public void setPasswordFromAdvanced( String passwordFromAdvanced ) { method getConnectionManager (line 449) | public String getConnectionManager() { method setConnectionManager (line 453) | public void setConnectionManager( String connectionManager ) { method getDriver (line 457) | public String getDriver() { method setDriver (line 461) | public void setDriver( String driver ) { method getVerbose (line 465) | public String getVerbose() { method setVerbose (line 469) | public void setVerbose( String verbose ) { method getConnectionParamFile (line 473) | public String getConnectionParamFile() { method setConnectionParamFile (line 477) | public void setConnectionParamFile( String connectionParamFile ) { method getHadoopHome (line 481) | public String getHadoopHome() { method setHadoopHome (line 485) | public void setHadoopHome( String hadoopHome ) { method getEnclosedBy (line 489) | public String getEnclosedBy() { method setEnclosedBy (line 493) | public void setEnclosedBy( String enclosedBy ) { method getEscapedBy (line 497) | public String getEscapedBy() { method setEscapedBy (line 501) | public void setEscapedBy( String escapedBy ) { method getFieldsTerminatedBy (line 505) | public String getFieldsTerminatedBy() { method setFieldsTerminatedBy (line 509) | public void setFieldsTerminatedBy( String fieldsTerminatedBy ) { method getLinesTerminatedBy (line 513) | public String getLinesTerminatedBy() { method setLinesTerminatedBy (line 517) | public void setLinesTerminatedBy( String linesTerminatedBy ) { method getOptionallyEnclosedBy (line 521) | public String getOptionallyEnclosedBy() { method setOptionallyEnclosedBy (line 525) | public void setOptionallyEnclosedBy( String optionallyEnclosedBy ) { method getMysqlDelimiters (line 529) | public String getMysqlDelimiters() { method setMysqlDelimiters (line 533) | public void setMysqlDelimiters( String mysqlDelimiters ) { method getInputEnclosedBy (line 537) | public String getInputEnclosedBy() { method setInputEnclosedBy (line 541) | public void setInputEnclosedBy( String inputEnclosedBy ) { method getInputEscapedBy (line 545) | public String getInputEscapedBy() { method setInputEscapedBy (line 549) | public void setInputEscapedBy( String inputEscapedBy ) { method getInputFieldsTerminatedBy (line 553) | public String getInputFieldsTerminatedBy() { method setInputFieldsTerminatedBy (line 557) | public void setInputFieldsTerminatedBy( String inputFieldsTerminatedBy... method getInputLinesTerminatedBy (line 561) | public String getInputLinesTerminatedBy() { method setInputLinesTerminatedBy (line 565) | public void setInputLinesTerminatedBy( String inputLinesTerminatedBy ) { method getInputOptionallyEnclosedBy (line 569) | public String getInputOptionallyEnclosedBy() { method setInputOptionallyEnclosedBy (line 573) | public void setInputOptionallyEnclosedBy( String inputOptionallyEnclos... method getBinDir (line 577) | public String getBinDir() { method setBinDir (line 581) | public void setBinDir( String binDir ) { method getClassName (line 585) | public String getClassName() { method setClassName (line 589) | public void setClassName( String className ) { method getJarFile (line 593) | public String getJarFile() { method setJarFile (line 597) | public void setJarFile( String jarFile ) { method getOutdir (line 601) | public String getOutdir() { method setOutdir (line 605) | public void setOutdir( String outdir ) { method getPackageName (line 609) | public String getPackageName() { method setPackageName (line 613) | public void setPackageName( String packageName ) { method getMapColumnJava (line 617) | public String getMapColumnJava() { method setMapColumnJava (line 621) | public void setMapColumnJava( String mapColumnJava ) { method getDeleteCompileDir (line 625) | public String getDeleteCompileDir() { method setDeleteCompileDir (line 629) | public void setDeleteCompileDir( String deleteCompileDir ) { method getTable (line 633) | public String getTable() { method setTable (line 637) | public void setTable( String table ) { method getNumMappers (line 641) | public String getNumMappers() { method setNumMappers (line 645) | public void setNumMappers( String numMappers ) { method getCommandLine (line 649) | public String getCommandLine() { method setCommandLine (line 653) | public void setCommandLine( String commandLine ) { method getMode (line 657) | public String getMode() { method getModeAsEnum (line 661) | public JobEntryMode getModeAsEnum() { method setMode (line 675) | public void setMode( JobEntryMode mode ) { method setMode (line 679) | public void setMode( String mode ) { method getClusterName (line 683) | public String getClusterName() { method setClusterName (line 687) | public void setClusterName( String clusterName ) { method getNamenodeHost (line 691) | public String getNamenodeHost() { method setNamenodeHost (line 695) | public void setNamenodeHost( String namenodeHost ) { method getShimIdentifier (line 699) | public String getShimIdentifier() { method setShimIdentifier (line 703) | public void setShimIdentifier( String shimIdentifier ) { method getNamenodePort (line 707) | public String getNamenodePort() { method setNamenodePort (line 711) | public void setNamenodePort( String namenodePort ) { method getJobtrackerHost (line 715) | public String getJobtrackerHost() { method setJobtrackerHost (line 719) | public void setJobtrackerHost( String jobtrackerHost ) { method getJobtrackerPort (line 723) | public String getJobtrackerPort() { method setJobtrackerPort (line 727) | public void setJobtrackerPort( String jobtrackerPort ) { method getHadoopMapredHome (line 731) | public String getHadoopMapredHome() { method setHadoopMapredHome (line 735) | public void setHadoopMapredHome( String hadoopMapredHome ) { method getPasswordAlias (line 739) | public String getPasswordAlias() { method setPasswordAlias (line 743) | public void setPasswordAlias( String passwordAlias ) { method getPasswordFile (line 747) | public String getPasswordFile() { method setPasswordFile (line 751) | public void setPasswordFile( String passwordFile ) { method getRelaxedIsolation (line 755) | public String getRelaxedIsolation() { method setRelaxedIsolation (line 759) | public void setRelaxedIsolation( String relaxedIsolation ) { method getSkipDistCache (line 763) | public String getSkipDistCache() { method setSkipDistCache (line 767) | public void setSkipDistCache( String skipDistCache ) { method getMapreduceJobName (line 771) | public String getMapreduceJobName() { method setMapreduceJobName (line 775) | public void setMapreduceJobName( String mapreduceJobName ) { method getValidate (line 779) | public String getValidate() { method setValidate (line 783) | public void setValidate( String validate ) { method getValidationFailureHandler (line 787) | public String getValidationFailureHandler() { method setValidationFailureHandler (line 791) | public void setValidationFailureHandler( String validationFailureHandl... method getValidationThreshold (line 795) | public String getValidationThreshold() { method setValidationThreshold (line 799) | public void setValidationThreshold( String validationThreshold ) { method getValidator (line 803) | public String getValidator() { method setValidator (line 807) | public void setValidator( String validator ) { method getHcatalogDatabase (line 811) | public String getHcatalogDatabase() { method setHcatalogDatabase (line 815) | public void setHcatalogDatabase( String hcatalogDatabase ) { method getHcatalogHome (line 819) | public String getHcatalogHome() { method setHcatalogHome (line 823) | public void setHcatalogHome( String hcatalogHome ) { method getHcatalogPartitionKeys (line 827) | public String getHcatalogPartitionKeys() { method setHcatalogPartitionKeys (line 831) | public void setHcatalogPartitionKeys( String hcatalogPartitionKeys ) { method getHcatalogPartitionValues (line 835) | public String getHcatalogPartitionValues() { method setHcatalogPartitionValues (line 839) | public void setHcatalogPartitionValues( String hcatalogPartitionValues... method getHcatalogTable (line 843) | public String getHcatalogTable() { method setHcatalogTable (line 847) | public void setHcatalogTable( String hcatalogTable ) { method getHiveHome (line 851) | public String getHiveHome() { method setHiveHome (line 855) | public void setHiveHome( String hiveHome ) { method getHivePartitionKey (line 859) | public String getHivePartitionKey() { method setHivePartitionKey (line 863) | public void setHivePartitionKey( String hivePartitionKey ) { method getHivePartitionValue (line 867) | public String getHivePartitionValue() { method setHivePartitionValue (line 871) | public void setHivePartitionValue( String hivePartitionValue ) { method getMapColumnHive (line 875) | public String getMapColumnHive() { method setMapColumnHive (line 879) | public void setMapColumnHive( String mapColumnHive ) { method getInputNullString (line 882) | public String getInputNullString() { method setInputNullString (line 886) | public void setInputNullString( String inputNullString ) { method getInputNullNonString (line 890) | public String getInputNullNonString() { method setInputNullNonString (line 894) | public void setInputNullNonString( String inputNullNonString ) { method getNullString (line 897) | public String getNullString() { method setNullString (line 901) | public void setNullString( String nullString ) { method getNullNonString (line 905) | public String getNullNonString() { method setNullNonString (line 909) | public void setNullNonString( String nullNonString ) { method getFiles (line 913) | public String getFiles() { method setFiles (line 917) | public void setFiles( String files ) { method getLibjars (line 921) | public String getLibjars() { method setLibjars (line 925) | public void setLibjars( String libjars ) { method getArchives (line 929) | public String getArchives() { method setArchives (line 933) | public void setArchives( String archives ) { method getCustomArguments (line 937) | public AbstractModelList getCustomArguments() { method setCustomArguments (line 944) | public void setCustomArguments( AbstractModelList custo... method loadClusterConfig (line 948) | public void loadClusterConfig( Repository rep, ObjectId id ) throws Ke... method loadClusterConfig (line 957) | public void loadClusterConfig( Node entrynode ) { method getClusterXML (line 966) | public String getClusterXML() { method saveClusterConfig (line 974) | public void saveClusterConfig( Repository rep, ObjectId id_job, JobEnt... method isAdvancedClusterConfigSet (line 981) | public boolean isAdvancedClusterConfigSet() { method namedClusterProperties (line 985) | private static Map namedClusterProperties( NamedCluste... method ncPropertiesNotNullOrEmpty (line 995) | @VisibleForTesting FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopExportConfig.java class SqoopExportConfig (line 21) | public class SqoopExportConfig extends SqoopConfig { method SqoopExportConfig (line 54) | public SqoopExportConfig( SqoopExportJobEntry jobEntry ) { method createClusterTemplate (line 58) | @Override protected NamedCluster createClusterTemplate() { method getExportDir (line 62) | public String getExportDir() { method setExportDir (line 66) | public void setExportDir( String exportDir ) { method getUpdateKey (line 72) | public String getUpdateKey() { method setUpdateKey (line 76) | public void setUpdateKey( String updateKey ) { method getUpdateMode (line 82) | public String getUpdateMode() { method setUpdateMode (line 86) | public void setUpdateMode( String updateMode ) { method getDirect (line 92) | public String getDirect() { method setDirect (line 96) | public void setDirect( String direct ) { method getStagingTable (line 102) | public String getStagingTable() { method setStagingTable (line 106) | public void setStagingTable( String stagingTable ) { method getClearStagingTable (line 112) | public String getClearStagingTable() { method setClearStagingTable (line 116) | public void setClearStagingTable( String clearStagingTable ) { method getBatch (line 122) | public String getBatch() { method setBatch (line 126) | public void setBatch( String batch ) { method getCall (line 132) | public String getCall() { method setCall (line 136) | public void setCall( String call ) { method getColumns (line 142) | public String getColumns() { method setColumns (line 146) | public void setColumns( String columns ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopExportJobEntry.java class SqoopExportJobEntry (line 41) | @JobEntry( id = "SqoopExport", name = "Sqoop.Export.PluginName", descrip... method SqoopExportJobEntry (line 50) | public SqoopExportJobEntry() { method SqoopExportJobEntry (line 56) | public SqoopExportJobEntry( NamedClusterService namedClusterService, method createJobConfig (line 62) | @Override protected SqoopExportConfig createJobConfig() { method getToolName (line 69) | @Override method getDatabaseMeta (line 77) | @Override method getTableName (line 85) | @Override method getSchemaName (line 93) | @Override method getMissingDatabaseConnectionInformationMessage (line 98) | @Override method loadXML (line 112) | @Override method loadRep (line 122) | @Override method setDatabaseMeta (line 135) | public void setDatabaseMeta( DatabaseMeta databaseMeta ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopExportJobEntryDialog.java class SqoopExportJobEntryDialog (line 34) | @PluginDialog( id = "SqoopExport", image = "sqoop-export.svg", pluginTyp... method SqoopExportJobEntryDialog (line 38) | public SqoopExportJobEntryDialog( Shell parent, JobEntryInterface jobE... method getXulFile (line 43) | @Override method getMessagesClass (line 48) | @Override method createController (line 53) | @Override FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopImportConfig.java class SqoopImportConfig (line 23) | public class SqoopImportConfig extends SqoopConfig { method SqoopImportConfig (line 236) | public SqoopImportConfig( SqoopImportJobEntry jobEntry ) { method createClusterTemplate (line 240) | @Override protected NamedCluster createClusterTemplate() { method getTargetDir (line 244) | public String getTargetDir() { method setTargetDir (line 248) | public void setTargetDir( String targetDir ) { method getWarehouseDir (line 252) | public String getWarehouseDir() { method setWarehouseDir (line 256) | public void setWarehouseDir( String warehouseDir ) { method getAppend (line 260) | public String getAppend() { method setAppend (line 264) | public void setAppend( String append ) { method getAsAvrodatafile (line 268) | public String getAsAvrodatafile() { method setAsAvrodatafile (line 272) | public void setAsAvrodatafile( String asAvrodatafile ) { method getAsSequencefile (line 276) | public String getAsSequencefile() { method setAsSequencefile (line 280) | public void setAsSequencefile( String asSequencefile ) { method getAsTextfile (line 284) | public String getAsTextfile() { method setAsTextfile (line 288) | public void setAsTextfile( String asTextfile ) { method getBoundaryQuery (line 292) | public String getBoundaryQuery() { method setBoundaryQuery (line 296) | public void setBoundaryQuery( String boundaryQuery ) { method getColumns (line 300) | public String getColumns() { method setColumns (line 304) | public void setColumns( String columns ) { method getDirect (line 308) | public String getDirect() { method setDirect (line 312) | public void setDirect( String direct ) { method getDirectSplitSize (line 316) | public String getDirectSplitSize() { method setDirectSplitSize (line 320) | public void setDirectSplitSize( String directSplitSize ) { method getInlineLobLimit (line 324) | public String getInlineLobLimit() { method setInlineLobLimit (line 328) | public void setInlineLobLimit( String inlineLobLimit ) { method getSplitBy (line 332) | public String getSplitBy() { method setSplitBy (line 336) | public void setSplitBy( String splitBy ) { method getQuery (line 340) | public String getQuery() { method setQuery (line 344) | public void setQuery( String query ) { method getWhere (line 348) | public String getWhere() { method setWhere (line 352) | public void setWhere( String where ) { method getCompress (line 356) | public String getCompress() { method setCompress (line 360) | public void setCompress( String compress ) { method getCompressionCodec (line 364) | public String getCompressionCodec() { method setCompressionCodec (line 368) | public void setCompressionCodec( String compressionCodec ) { method getCheckColumn (line 372) | public String getCheckColumn() { method setCheckColumn (line 376) | public void setCheckColumn( String checkColumn ) { method getIncremental (line 380) | public String getIncremental() { method setIncremental (line 384) | public void setIncremental( String incremental ) { method getLastValue (line 388) | public String getLastValue() { method setLastValue (line 392) | public void setLastValue( String lastValue ) { method getHiveImport (line 396) | public String getHiveImport() { method setHiveImport (line 400) | public void setHiveImport( String hiveImport ) { method getHiveOverwrite (line 404) | public String getHiveOverwrite() { method setHiveOverwrite (line 408) | public void setHiveOverwrite( String hiveOverwrite ) { method getCreateHiveTable (line 412) | public String getCreateHiveTable() { method setCreateHiveTable (line 416) | public void setCreateHiveTable( String createHiveTable ) { method getHiveTable (line 420) | public String getHiveTable() { method setHiveTable (line 424) | public void setHiveTable( String hiveTable ) { method getHiveDropImportDelims (line 428) | public String getHiveDropImportDelims() { method setHiveDropImportDelims (line 432) | public void setHiveDropImportDelims( String hiveDropImportDelims ) { method getHiveDelimsReplacement (line 437) | public String getHiveDelimsReplacement() { method setHiveDelimsReplacement (line 441) | public void setHiveDelimsReplacement( String hiveDelimsReplacement ) { method getColumnFamily (line 446) | public String getColumnFamily() { method setColumnFamily (line 450) | public void setColumnFamily( String columnFamily ) { method getHbaseCreateTable (line 454) | public String getHbaseCreateTable() { method setHbaseCreateTable (line 458) | public void setHbaseCreateTable( String hbaseCreateTable ) { method getHbaseRowKey (line 462) | public String getHbaseRowKey() { method setHbaseRowKey (line 466) | public void setHbaseRowKey( String hbaseRowKey ) { method getHbaseTable (line 470) | public String getHbaseTable() { method setHbaseTable (line 474) | public void setHbaseTable( String hbaseTable ) { method getHbaseZookeeperQuorum (line 478) | public String getHbaseZookeeperQuorum() { method setHbaseZookeeperQuorum (line 482) | public void setHbaseZookeeperQuorum( String hbaseZookeeperQuorum ) { method getHbaseZookeeperClientPort (line 487) | public String getHbaseZookeeperClientPort() { method setHbaseZookeeperClientPort (line 491) | public void setHbaseZookeeperClientPort( String hbaseZookeeperClientPo... method getAdvancedArgumentsList (line 496) | @Override method getAsParquetfile (line 526) | public String getAsParquetfile() { method setAsParquetfile (line 530) | public void setAsParquetfile( String asParquetfile ) { method getDeleteTargetDir (line 534) | public String getDeleteTargetDir() { method setDeleteTargetDir (line 538) | public void setDeleteTargetDir( String deleteTargetDir ) { method getFetchSize (line 542) | public String getFetchSize() { method setFetchSize (line 546) | public void setFetchSize( String fetchSize ) { method getMergeKey (line 550) | public String getMergeKey() { method setMergeKey (line 554) | public void setMergeKey( String mergeKey ) { method getHiveDatabase (line 558) | public String getHiveDatabase() { method setHiveDatabase (line 562) | public void setHiveDatabase( String hiveDatabase ) { method getHbaseBulkload (line 566) | public String getHbaseBulkload() { method setHbaseBulkload (line 570) | public void setHbaseBulkload( String hbaseBulkload ) { method getCreateHcatalogTable (line 574) | public String getCreateHcatalogTable() { method setCreateHcatalogTable (line 578) | public void setCreateHcatalogTable( String createHcatalogTable ) { method getHcatalogStorageStanza (line 582) | public String getHcatalogStorageStanza() { method setHcatalogStorageStanza (line 586) | public void setHcatalogStorageStanza( String hcatalogStorageStanza ) { method getAccumuloBatchSize (line 591) | public String getAccumuloBatchSize() { method setAccumuloBatchSize (line 595) | public void setAccumuloBatchSize( String accumuloBatchSize ) { method getAccumuloColumnFamily (line 599) | public String getAccumuloColumnFamily() { method setAccumuloColumnFamily (line 603) | public void setAccumuloColumnFamily( String accumuloColumnFamily ) { method getAccumuloCreateTable (line 608) | public String getAccumuloCreateTable() { method setAccumuloCreateTable (line 612) | public void setAccumuloCreateTable( String accumuloCreateTable ) { method getAccumuloInstance (line 616) | public String getAccumuloInstance() { method setAccumuloInstance (line 620) | public void setAccumuloInstance( String accumuloInstance ) { method getAccumuloMaxLatency (line 624) | public String getAccumuloMaxLatency() { method setAccumuloMaxLatency (line 628) | public void setAccumuloMaxLatency( String accumuloMaxLatency ) { method getAccumuloPassword (line 632) | public String getAccumuloPassword() { method setAccumuloPassword (line 636) | public void setAccumuloPassword( String accumuloPassword ) { method getAccumuloRowKey (line 640) | public String getAccumuloRowKey() { method setAccumuloRowKey (line 644) | public void setAccumuloRowKey( String accumuloRowKey ) { method getAccumuloTable (line 648) | public String getAccumuloTable() { method setAccumuloTable (line 652) | public void setAccumuloTable( String accumuloTable ) { method getAccumuloUser (line 656) | public String getAccumuloUser() { method setAccumuloUser (line 660) | public void setAccumuloUser( String accumuloUser ) { method getAccumuloVisibility (line 664) | public String getAccumuloVisibility() { method setAccumuloVisibility (line 668) | public void setAccumuloVisibility( String accumuloVisibility ) { method getAccumuloZookeepers (line 672) | public String getAccumuloZookeepers() { method setAccumuloZookeepers (line 676) | public void setAccumuloZookeepers( String accumuloZookeepers ) { method getHs2Url (line 680) | public String getHs2Url() { method setHs2Url (line 684) | public void setHs2Url( String hs2Url ) { method getHs2User (line 688) | public String getHs2User() { method setHs2User (line 692) | public void setHs2User( String hs2User ) { method getHs2Password (line 696) | public String getHs2Password() { method setHs2Password (line 700) | public void setHs2Password( String hs2Password ) { method getHs2Keytab (line 704) | public String getHs2Keytab() { method setHs2Keytab (line 708) | public void setHs2Keytab( String hs2Keytab ) { method getExternalTableDir (line 712) | public String getExternalTableDir() { method setExternalTableDir (line 716) | public void setExternalTableDir( String externalTableDir ) { method getHbaseNullIncrementalMode (line 720) | public String getHbaseNullIncrementalMode() { method setHbaseNullIncrementalMode (line 724) | public void setHbaseNullIncrementalMode( String hbaseNullIncrementalMo... method getHcatalogExternalTable (line 729) | public String getHcatalogExternalTable() { method setHcatalogExternalTable (line 733) | public void setHcatalogExternalTable( String hcatalogExternalTable ) { method getTemporaryRootdir (line 738) | public String getTemporaryRootdir() { method setTemporaryRootdir (line 742) | public void setTemporaryRootdir( String temporaryRootdir ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopImportJobEntry.java class SqoopImportJobEntry (line 32) | @JobEntry( id = "SqoopImport", name = "Sqoop.Import.PluginName", descrip... method SqoopImportJobEntry (line 37) | public SqoopImportJobEntry() { method SqoopImportJobEntry (line 43) | public SqoopImportJobEntry( NamedClusterService namedClusterService, method createJobConfig (line 50) | @Override protected SqoopImportConfig createJobConfig() { method getToolName (line 57) | @Override method configure (line 62) | @Override FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopImportJobEntryDialog.java class SqoopImportJobEntryDialog (line 32) | @PluginDialog( id = "SqoopImport", image = "sqoop-import.svg", pluginTyp... method SqoopImportJobEntryDialog (line 36) | public SqoopImportJobEntryDialog( Shell parent, JobEntryInterface jobE... method getMessagesClass (line 41) | @Override method createController (line 46) | @Override method getXulFile (line 52) | @Override FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopLog4jFilter.java class SqoopLog4jFilter (line 20) | public class SqoopLog4jFilter extends AbstractFilter { method SqoopLog4jFilter (line 23) | public SqoopLog4jFilter( String logChannelId ) { method filter (line 27) | @Override FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopUtils.java class SqoopUtils (line 45) | public class SqoopUtils { method parseCommandLine (line 80) | public static List parseCommandLine( String commandLineString,... method configureFromCommandLine (line 154) | public static void configureFromCommandLine( method isArgName (line 218) | private static int isArgName( String s ) { method setArgumentStringValues (line 245) | protected static void setArgumentStringValues( SqoopConfig config, Map... method setCustomArgumentStringValues (line 281) | private static void setCustomArgumentStringValues( SqoopConfig config,... method pickupArgumentValueFor (line 290) | private static String pickupArgumentValueFor( CommandLineArgument arg,... method getCommandLineArgs (line 325) | public static List getCommandLineArgs( SqoopConfig config, Var... method generateCommandLineString (line 350) | public static String generateCommandLineString( SqoopConfig config, Va... method escapeEscapeSequences (line 403) | protected static String escapeEscapeSequences( String s ) { method quote (line 417) | protected static String quote( String s ) { method appendArguments (line 437) | protected static void appendArguments( List args, Set args, ArgumentWrapp... method appendCustomArguments (line 468) | private static void appendCustomArguments( List args, SqoopCon... method appendCustomArgument (line 474) | private static void appendCustomArgument( List args, PropertyE... method escapeBackslash (line 499) | private static String escapeBackslash( String s ) { method handleCustomOption (line 503) | private static void handleCustomOption( List args, String opti... method findAllArguments (line 544) | public static Set findAllArguments( Object ... method getDisplayName (line 588) | public static String getDisplayName( CommandLineArgument anno ) { method findMethod (line 606) | public static Method findMethod( Class aClass, String methodName, C... FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/ui/AbstractSqoopJobEntryController.java class AbstractSqoopJobEntryController (line 73) | public abstract class AbstractSqoopJobEntryController getNamedClusters() { method setNamedClusters (line 269) | public void setNamedClusters( AbstractModelList namedClu... method setSelectedNamedCluster (line 273) | public void setSelectedNamedCluster( NamedCluster namedCluster ) { method updateDeleteButton (line 291) | private void updateDeleteButton() { method isSelectedNamedCluster (line 297) | public boolean isSelectedNamedCluster() { method getModeDeckElementId (line 304) | protected String getModeDeckElementId() { method beforeInit (line 308) | @Override method afterInit (line 324) | @Override method getAdvancedModeDeckElementId (line 341) | protected String getAdvancedModeDeckElementId() { method syncModel (line 348) | protected void syncModel() { method populateDatabases (line 356) | protected void populateDatabases() { method populateNamedClusters (line 366) | protected void populateNamedClusters() { method setConnectChanged (line 381) | public void setConnectChanged( String connect ) { method setAdvancedNamedConfiguration (line 394) | public void setAdvancedNamedConfiguration( String value ) { method setUsernameChanged (line 402) | public void setUsernameChanged( String username ) { method setPasswordChanged (line 409) | public void setPasswordChanged( String password ) { method getDatabaseConnections (line 419) | public AbstractModelList getDatabaseConnections() { method getSelectedDatabaseConnection (line 426) | public DatabaseItem getSelectedDatabaseConnection() { method createDatabaseItem (line 440) | protected DatabaseItem createDatabaseItem( String database ) { method setSelectedDatabaseConnection (line 452) | public void setSelectedDatabaseConnection( DatabaseItem selectedDataba... method updateDatabaseItemsList (line 494) | protected void updateDatabaseItemsList() { method setDatabaseInteractionButtonsDisabled (line 522) | protected void setDatabaseInteractionButtonsDisabled( boolean b ) { method getModeToggleLabel (line 531) | public String getModeToggleLabel() { method setModeToggleLabel (line 540) | public void setModeToggleLabel( String modeToggleLabel ) { method setModeToggleLabel (line 546) | @Override method getDatabaseDialog (line 551) | protected DatabaseDialog getDatabaseDialog() { method editConnection (line 558) | public void editConnection() { method newConnection (line 566) | public void newConnection() { method editDatabaseMeta (line 579) | protected void editDatabaseMeta( DatabaseMeta database, boolean isNew ) { method getName (line 600) | @Override method getEditConnectionButtonId (line 608) | public String getEditConnectionButtonId() { method getBrowseTableButtonId (line 615) | public String getBrowseTableButtonId() { method getBrowseSchemaButtonId (line 619) | public String getBrowseSchemaButtonId() { method getModeToggleLabelElementId (line 626) | public String getModeToggleLabelElementId() { method getAdvancedListButtonElementId (line 633) | public String getAdvancedListButtonElementId() { method getAdvancedCommandLineButtonElementId (line 640) | public String getAdvancedCommandLineButtonElementId() { method getConfig (line 647) | @Override method testSettings (line 655) | public void testSettings() { method toggleMode (line 674) | public void toggleMode() { method toggleQuickMode (line 686) | protected void toggleQuickMode( boolean quickMode ) { method setUiMode (line 702) | protected void setUiMode( JobEntryMode mode ) { method updateUiMode (line 733) | protected void updateUiMode( JobEntryMode oldMode, JobEntryMode newMod... method getMode (line 766) | private JobEntryMode getMode() { method syncCommandLineToConfig (line 787) | protected boolean syncCommandLineToConfig() { method setSelectedAdvancedButton (line 799) | public void setSelectedAdvancedButton( AdvancedButton button ) { method toggleAdvancedMode (line 825) | protected void toggleAdvancedMode( AdvancedButton button ) { method getAdvancedListButton (line 832) | public XulButton getAdvancedListButton() { method getAdvancedCommandLineButton (line 839) | public XulButton getAdvancedCommandLineButton() { method getModeDeck (line 846) | protected XulDeck getModeDeck() { method getAdvancedModeDeck (line 853) | protected XulDeck getAdvancedModeDeck() { method getButton (line 864) | protected XulButton getButton( String elementId ) { method advancedListButtonClicked (line 871) | public void advancedListButtonClicked() { method advancedCommandLineButtonClicked (line 878) | public void advancedCommandLineButtonClicked() { method browseSchema (line 886) | public void browseSchema() { method browseTable (line 917) | public void browseTable() { method getInitialFile (line 928) | protected FileObject getInitialFile( String path ) throws FileSystemEx... method getMetaStore (line 965) | private IMetaStore getMetaStore() { method extractNamedClusterFromVfsFileChooser (line 969) | protected void extractNamedClusterFromVfsFileChooser() { method newCustomArgument (line 981) | public void newCustomArgument() { method deleteCustomArgument (line 986) | public void deleteCustomArgument() { method newNamedCluster (line 999) | public void newNamedCluster( String stepName ) { method editNamedCluster (line 1010) | public void editNamedCluster( String stepName ) { method selectNamedCluster (line 1023) | public void selectNamedCluster( String configName ) { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/ui/AbstractSqoopJobEntryDialog.java class AbstractSqoopJobEntryDialog (line 45) | public abstract class AbstractSqoopJobEntryDialog getMessagesClass(); method getXulFile (line 77) | protected abstract String getXulFile(); method createController (line 90) | protected abstract AbstractSqoopJobEntryController createControl... method init (line 99) | protected void init( E jobEntry ) throws XulException { method open (line 123) | @Override FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/ui/SqoopExportJobEntryController.java class SqoopExportJobEntryController (line 37) | public class SqoopExportJobEntryController extends method SqoopExportJobEntryController (line 42) | public SqoopExportJobEntryController( JobMeta jobMeta, XulDomContainer... method getDialogElementId (line 47) | @Override method createBindings (line 52) | @Override method browseForExportDirectory (line 60) | public void browseForExportDirectory() { method accept (line 93) | @Override method editNamedCluster (line 100) | public void editNamedCluster() { method newNamedCluster (line 104) | public void newNamedCluster() { FILE: kettle-plugins/sqoop/core/src/main/java/org/pentaho/big/data/kettle/plugins/sqoop/ui/SqoopImportJobEntryController.java class SqoopImportJobEntryController (line 36) | public class SqoopImportJobEntryController extends method SqoopImportJobEntryController (line 41) | public SqoopImportJobEntryController( JobMeta jobMeta, XulDomContainer... method getDialogElementId (line 46) | @Override method createBindings (line 51) | @Override method browseForTargetDirectory (line 59) | public void browseForTargetDirectory() { method editNamedCluster (line 92) | public void editNamedCluster() { method newNamedCluster (line 96) | public void newNamedCluster() { FILE: kettle-plugins/sqoop/core/src/test/java/org/pentaho/big/data/kettle/plugins/sqoop/AbstractSqoopJobEntryTest.java class AbstractSqoopJobEntryTest (line 49) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 67) | @Before method executeSqoopWithVariableClusterName (line 118) | @Test FILE: kettle-plugins/sqoop/core/src/test/java/org/pentaho/big/data/kettle/plugins/sqoop/PersistentPropertyChangeListener.java class PersistentPropertyChangeListener (line 24) | public class PersistentPropertyChangeListener implements PropertyChangeL... method PersistentPropertyChangeListener (line 27) | public PersistentPropertyChangeListener() { method propertyChange (line 31) | @Override method getReceivedEvents (line 39) | public List getReceivedEvents() { method getReceivedEventsWithChanges (line 46) | public List getReceivedEventsWithChanges() { FILE: kettle-plugins/sqoop/core/src/test/java/org/pentaho/big/data/kettle/plugins/sqoop/PropertyFiringObjectTest.java class PropertyFiringObjectTest (line 32) | public class PropertyFiringObjectTest { method testSqoopExportConfig (line 34) | @Test method testSqoopImportConfig (line 39) | @Test method testPropertyFiringForAllPrivateFieldsOf (line 52) | private void testPropertyFiringForAllPrivateFieldsOf( XulEventSource o... method getTestValue (line 112) | private Object getTestValue( Class type, Object originalValue ) { FILE: kettle-plugins/sqoop/core/src/test/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopConfigTest.java class SqoopConfigTest (line 63) | @RunWith( MockitoJUnitRunner.Silent.class ) method setUp (line 85) | @Before method createSqoopConfig (line 90) | protected SqoopConfig createSqoopConfig() { method addRemovePropertyChangeListener (line 121) | @Test method addRemovePropertyChangeListener_propertyName (line 133) | @Test method getAdvancedArgumentsList (line 150) | @Test method testClone (line 169) | @Test method setDatabaseConnectionInformation (line 180) | @Test method numMappers (line 199) | @Test method copyConnectionInfoFromAdvanced (line 224) | @Test method copyConnectionInfoToAdvanced (line 250) | @Test method getModeAsEnum (line 279) | @Test method testClusterConfigToXML (line 289) | @Test method testClusterConfigToRepo (line 304) | @Test method testSetNamedCluster (line 339) | @Test method testIsAdvancedClusterConfigSet_ClusterNameNull (line 350) | @Test method testIsAdvancedClusterConfigSet_ClusterNameEmpty (line 357) | @Test method testIsAdvancedClusterConfigSet_ClusterNameEmptyOrNullAndAllNcPropertiesNull (line 364) | @Test method testIsAdvancedClusterConfigSet_ClusterNameNotNull (line 375) | @Test method testNcPropertiesNotNullOrEmpty_AllNotNullNotEmpty (line 382) | @Test method testNcPropertiesNotNullOrEmpty_AllNull (line 388) | @Test method testNcPropertiesNotNullOrEmpty_AllEmpty (line 398) | @Test method testNcPropertiesNotNullOrEmpty_HdfsHostOnlyNotNull (line 408) | @Test method testNcPropertiesNotNullOrEmpty_HdfsPortOnlyNotNull (line 417) | @Test method testNcPropertiesNotNullOrEmpty_JobTrackerHostOnlyNotNull (line 426) | @Test method testNcPropertiesNotNullOrEmpty_JobTrackerPortOnlyNotNull (line 435) | @Test method testSetCustomArguments_GetCustomArguments (line 444) | @Test FILE: kettle-plugins/sqoop/core/src/test/java/org/pentaho/big/data/kettle/plugins/sqoop/SqoopLog4jFilterTest.java class SqoopLog4jFilterTest (line 24) | public class SqoopLog4jFilterTest { method decide (line 26) | @Test FILE: kettle-plugins/sqoop/core/src/test/java/org/pentaho/big/data/kettle/plugins/sqoop/util/MockitoAutoBean.java class MockitoAutoBean (line 24) | public class MockitoAutoBean implements Answer { method MockitoAutoBean (line 27) | public MockitoAutoBean() { method MockitoAutoBean (line 30) | public MockitoAutoBean( T value ) { method answer (line 35) | @SuppressWarnings( "unchecked" ) method getValue (line 44) | public T getValue() { method setValue (line 48) | public void setValue( T value ) { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/AbstractAmazonJobEntry.java class AbstractAmazonJobEntry (line 22) | public abstract class AbstractAmazonJobEntry extends JobEntryBase implem... method getHadoopJobName (line 44) | public String getHadoopJobName() { method setHadoopJobName (line 48) | public void setHadoopJobName( String hadoopJobName ) { method getHadoopJobFlowId (line 52) | public String getHadoopJobFlowId() { method setHadoopJobFlowId (line 56) | public void setHadoopJobFlowId( String hadoopJobFlowId ) { method setAccessKey (line 60) | public void setAccessKey( String accessKey ) { method getAccessKey (line 64) | public String getAccessKey() { method setSecretKey (line 68) | public void setSecretKey( String secretKey ) { method getSecretKey (line 72) | public String getSecretKey() { method setSessionToken (line 76) | public void setSessionToken( String sessionToken ) { method getSessionToken (line 80) | public String getSessionToken() { method getStagingDir (line 84) | public String getStagingDir() { method setStagingDir (line 88) | public void setStagingDir( String stagingDir ) { method getRegion (line 92) | public String getRegion() { method setRegion (line 96) | public void setRegion( String region ) { method getEc2Role (line 100) | public String getEc2Role() { method setEc2Role (line 104) | public void setEc2Role( String ec2Role ) { method getEmrRole (line 108) | public String getEmrRole() { method setEmrRole (line 112) | public void setEmrRole( String emrRole ) { method getMasterInstanceType (line 116) | public String getMasterInstanceType() { method setMasterInstanceType (line 120) | public void setMasterInstanceType( String masterInstanceType ) { method getSlaveInstanceType (line 124) | public String getSlaveInstanceType() { method setSlaveInstanceType (line 128) | public void setSlaveInstanceType( String slaveInstanceType ) { method getNumInstances (line 132) | public String getNumInstances() { method setNumInstances (line 136) | public void setNumInstances( String numInstances ) { method getEmrRelease (line 140) | public String getEmrRelease() { method setEmrRelease (line 144) | public void setEmrRelease( String emrRelease ) { method getCmdLineArgs (line 148) | public String getCmdLineArgs() { method setCmdLineArgs (line 152) | public void setCmdLineArgs( String cmdLineArgs ) { method getEc2SubnetId (line 156) | public String getEc2SubnetId() { method setEc2SubnetId (line 160) | public void setEc2SubnetId( String ec2SubnetId ) { method getAlive (line 164) | public boolean getAlive() { method setAlive (line 168) | public void setAlive( boolean isAlive ) { method getBlocking (line 172) | public boolean getBlocking() { method setBlocking (line 176) | public void setBlocking( boolean blocking ) { method isRunOnNewCluster (line 180) | public boolean isRunOnNewCluster() { method setRunOnNewCluster (line 184) | public void setRunOnNewCluster( boolean runOnNewCluster ) { method getLoggingInterval (line 188) | public String getLoggingInterval() { method setLoggingInterval (line 192) | public void setLoggingInterval( String loggingInterval ) { method getAWSSecretKey (line 196) | public String getAWSSecretKey() { method getAWSAccessKeyId (line 200) | public String getAWSAccessKeyId() { method getAWSSessionToken (line 204) | public String getAWSSessionToken() { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/AbstractAmazonJobEntryDialog.java class AbstractAmazonJobEntryDialog (line 42) | public abstract class AbstractAmazonJobEntryDialog getMessagesClass(); method getXulFile (line 76) | protected abstract String getXulFile(); method createController (line 86) | protected abstract AbstractAmazonJobExecutorController createControlle... method init (line 95) | protected void init( AbstractAmazonJobEntry jobEntry ) throws XulExcep... method open (line 120) | @Override method setDialogSize (line 125) | private void setDialogSize() { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/AbstractAmazonJobExecutor.java class AbstractAmazonJobExecutor (line 55) | public abstract class AbstractAmazonJobExecutor extends AbstractAmazonJo... method getLog4jLevel (line 82) | private Level getLog4jLevel( LogLevel level ) { method setupLogFile (line 87) | public void setupLogFile() { method getStagingBucketName (line 103) | public String getStagingBucketName() throws FileSystemException, Kettl... method getS3FileObjectPath (line 113) | @VisibleForTesting method getKeyFromS3StagingDir (line 124) | @VisibleForTesting method setS3BucketKey (line 143) | protected void setS3BucketKey( FileObject stagingFile ) throws KettleF... method getStagingS3BucketUrl (line 159) | public String getStagingS3BucketUrl( String stagingBucketName ) { method getStagingS3FileUrl (line 163) | public String getStagingS3FileUrl( String stagingBucketName ) { method buildFilename (line 167) | public String buildFilename( String filename ) { method createStagingFile (line 172) | public abstract File createStagingFile() throws IOException, KettleExc... method getStepBootstrapActions (line 174) | public abstract String getStepBootstrapActions(); method getMainClass (line 176) | public abstract String getMainClass() throws Exception; method getStepType (line 178) | public abstract String getStepType(); method getAvailableSubnets (line 190) | public static List getAvailableSubnets( String a... method runNewJobFlow (line 202) | private void runNewJobFlow( String stagingS3FileUrl, String stagingS3B... method addStepToExistingJobFlow (line 208) | private void addStepToExistingJobFlow( String stagingS3FileUrl, String... method logError (line 212) | private void logError( String stagingBucketName, String stepId ) { method initAmazonClients (line 216) | private void initAmazonClients() { method execute (line 224) | @Override method isJobStoppedByUser (line 343) | private boolean isJobStoppedByUser() { method setResultError (line 350) | private void setResultError( Result result ) { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/AbstractAmazonJobExecutorController.java class AbstractAmazonJobExecutorController (line 76) | public abstract class AbstractAmazonJobExecutorController extends Abstra... method AbstractAmazonJobExecutorController (line 191) | public AbstractAmazonJobExecutorController( XulDomContainer container,... method AbstractAmazonJobExecutorController (line 208) | public AbstractAmazonJobExecutorController() { method initializeEmrSettingsGroupMenuFields (line 211) | protected void initializeEmrSettingsGroupMenuFields() { method initializeTextFields (line 220) | protected void initializeTextFields() { method createBindings (line 248) | protected void createBindings() { method disableAwsConnection (line 380) | private static void disableAwsConnection( XulDomContainer container ) { method updateClusterState (line 385) | public void updateClusterState() { method fixFocusLostOnTab (line 404) | private void fixFocusLostOnTab() { method getTextBoxValueById (line 409) | private static String getTextBoxValueById( XulDomContainer container, ... method disableConnectButton (line 414) | private static boolean disableConnectButton( XulDomContainer container... method accessKeyIsEmpty (line 430) | private static BindingConvertor accessKeyIsEmpty( Xul... method secretKeyIsEmpty (line 444) | private static BindingConvertor secretKeyIsEmpty( Xul... method sessionTokenIsEmpty (line 458) | private static BindingConvertor sessionTokenIsEmpty( ... method populateEc2Roles (line 472) | protected AbstractModelList populateEc2Roles() { method populateEmrRoles (line 480) | protected AbstractModelList populateEmrRoles() { method populateMasterInstanceTypes (line 488) | protected AbstractModelList populateMasterInstanceTypes() { method populateSlaveInstanceTypes (line 496) | protected AbstractModelList populateSlaveInstanceTypes() { method setRolesFromAmazonAccount (line 504) | protected void setRolesFromAmazonAccount( AimClient amiClient ) throws... method setEc2RolesFromAmazonAccount (line 509) | @VisibleForTesting method setEmrRolesFromAmazonAccount (line 522) | @VisibleForTesting method populateInstanceTypesForSelectedRegion (line 535) | protected List populateInstanceTypesForSelectedRegion( Pricing... method populateRegions (line 559) | protected AbstractModelList populateRegions() { method populateReleases (line 574) | protected AbstractModelList populateReleases() { method getReleases (line 592) | public AbstractModelList getReleases() { method getXulMenu (line 596) | private XulMenuList getXulMenu( String elementMenuId ) { method setXulMenuDisabled (line 600) | private void setXulMenuDisabled( String elementMenuId, boolean isDisab... method setXulMenusDisabled (line 605) | protected void setXulMenusDisabled( boolean isDisable ) { method setSelectedItemForEachMenu (line 609) | protected void setSelectedItemForEachMenu() { method initRolesAndTypes (line 616) | private List initRolesAndTypes( String accessKey, String secre... method getEmrSettings (line 631) | public void getEmrSettings() { method loadSubnetsInternal (line 694) | private void loadSubnetsInternal( String accessKey, String secretKey, ... method getEc2Roles (line 733) | public AbstractModelList getEc2Roles() { method getEmrRoles (line 737) | public AbstractModelList getEmrRoles() { method getMasterInstanceTypes (line 741) | public AbstractModelList getMasterInstanceTypes() { method getSlaveInstanceTypes (line 745) | public AbstractModelList getSlaveInstanceTypes() { method getRegions (line 749) | public AbstractModelList getRegions() { method getEc2Subnets (line 753) | public AbstractModelList getEc2Subnets() { method setBindings (line 757) | public void setBindings( List bindings ) { method accept (line 761) | public void accept() { method syncModel (line 776) | protected void syncModel( Bowl bowl ) { method getValidationWarnings (line 817) | public List getValidationWarnings() { method collectClusterWarnings (line 850) | private List collectClusterWarnings() { method buildValidationErrorMessages (line 885) | protected String buildValidationErrorMessages() { method configureJobEntry (line 898) | protected void configureJobEntry() { method getSelectedEc2Role (line 924) | public String getSelectedEc2Role() { method getSelectedEmrRole (line 928) | public String getSelectedEmrRole() { method getSelectedMasterInstanceType (line 932) | public String getSelectedMasterInstanceType() { method getSelectedSlaveInstanceType (line 936) | public String getSelectedSlaveInstanceType() { method setSelectedEc2Role (line 940) | public void setSelectedEc2Role( String selectedEc2Role ) { method setSelectedEmrRole (line 957) | public void setSelectedEmrRole( String selectedEmrRole ) { method setSelectedMasterInstanceType (line 974) | public void setSelectedMasterInstanceType( String selectedMasterInstan... method setSelectedSlaveInstanceType (line 988) | public void setSelectedSlaveInstanceType( String selectedSlaveInstance... method getSelectedEc2SubnetId (line 1002) | public String getSelectedEc2SubnetId() { method setSelectedEc2SubnetId (line 1006) | public void setSelectedEc2SubnetId( String selectedEc2SubnetId ) { method getSelectedRegion (line 1018) | public String getSelectedRegion() { method setSelectedRegion (line 1022) | public void setSelectedRegion( String selectedRegion ) { method getEc2SubnetId (line 1048) | public String getEc2SubnetId() { method setEc2SubnetId (line 1052) | public void setEc2SubnetId( String ec2SubnetId ) { method extractSubnetId (line 1063) | private String extractSubnetId( String displayString ) { method initializeEc2RoleSelection (line 1086) | protected void initializeEc2RoleSelection() { method initializeEmrRoleSelection (line 1093) | protected void initializeEmrRoleSelection() { method initializeMasterInstanceSelection (line 1100) | protected void initializeMasterInstanceSelection() { method initializeSlaveInstanceSelection (line 1107) | protected void initializeSlaveInstanceSelection() { method initializeRegionSelection (line 1114) | protected void initializeRegionSelection() { method initializeReleaseSelection (line 1121) | protected void initializeReleaseSelection() { method initializeEc2SubnetSelection (line 1128) | protected void initializeEc2SubnetSelection() { method initializeClusterSelection (line 1135) | protected void initializeClusterSelection() { method beforeInit (line 1145) | protected void beforeInit() { method afterInit (line 1173) | protected void afterInit() { method getDialogElementId (line 1187) | protected abstract String getDialogElementId(); method getDialog (line 1194) | protected SwtDialog getDialog() { method getShell (line 1202) | protected Shell getShell() { method open (line 1206) | public JobEntryInterface open() { method showErrorDialog (line 1219) | protected void showErrorDialog( String title, String message ) { method init (line 1232) | public void init() throws XulException, InvocationTargetException { method cancel (line 1245) | public void cancel() { method openErrorDialog (line 1257) | public void openErrorDialog( String title, String message ) { method closeErrorDialog (line 1269) | public void closeErrorDialog() { method getFileChooserDialog (line 1275) | protected VfsFileChooserDialog getFileChooserDialog() throws KettleFil... method getFileSystemOptions (line 1288) | protected FileSystemOptions getFileSystemOptions() throws FileSystemEx... method browse (line 1302) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 1307) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 1312) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 1317) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 1322) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browseS3StagingDir (line 1328) | public void browseS3StagingDir() throws KettleException, FileSystemExc... method getVariableSpace (line 1342) | public VariableSpace getVariableSpace() { method getName (line 1352) | @Override method getJobEntryName (line 1357) | public String getJobEntryName() { method setJobEntryName (line 1361) | public void setJobEntryName( String jobEntryName ) { method getHadoopJobName (line 1369) | public String getHadoopJobName() { method setHadoopJobName (line 1373) | public void setHadoopJobName( String hadoopJobName ) { method getHadoopJobFlowId (line 1381) | public String getHadoopJobFlowId() { method setHadoopJobFlowId (line 1385) | public void setHadoopJobFlowId( String hadoopJobFlowId ) { method getAccessKey (line 1393) | public String getAccessKey() { method setAccessKey (line 1397) | public void setAccessKey( String accessKey ) { method getSecretKey (line 1405) | public String getSecretKey() { method setSecretKey (line 1409) | public void setSecretKey( String secretKey ) { method getSessionToken (line 1417) | public String getSessionToken() { method setSessionToken (line 1421) | public void setSessionToken( String sessionToken ) { method getRegion (line 1429) | public String getRegion() { method setRegion (line 1433) | public void setRegion( String region ) { method getStagingDir (line 1441) | public String getStagingDir() { method setStagingDir (line 1445) | public void setStagingDir( String stagingDir ) { method getStagingDirFile (line 1453) | public FileObject getStagingDirFile() { method setStagingDirFile (line 1457) | public void setStagingDirFile( FileObject stagingDirFile ) { method getJarUrl (line 1465) | public String getJarUrl() { method setJarUrl (line 1469) | public void setJarUrl( String jarUrl ) { method getNumInstances (line 1477) | public String getNumInstances() { method setNumInstances (line 1481) | public void setNumInstances( String numInstances ) { method getMasterInstanceType (line 1489) | public String getMasterInstanceType() { method setMasterInstanceType (line 1493) | public void setMasterInstanceType( String masterInstanceType ) { method getSlaveInstanceType (line 1501) | public String getSlaveInstanceType() { method setSlaveInstanceType (line 1505) | public void setSlaveInstanceType( String slaveInstanceType ) { method getEc2Role (line 1513) | public String getEc2Role() { method setEc2Role (line 1517) | public void setEc2Role( String ec2Role ) { method getEmrRole (line 1525) | public String getEmrRole() { method setEmrRole (line 1529) | public void setEmrRole( String emrRole ) { method invertBlocking (line 1537) | public void invertBlocking() { method getJobEntry (line 1541) | public abstract AbstractAmazonJobEntry getJobEntry(); method setJobEntry (line 1543) | public abstract void setJobEntry( AbstractAmazonJobEntry jobEntry ); method getCommandLineArgs (line 1545) | public String getCommandLineArgs() { method setCommandLineArgs (line 1549) | public void setCommandLineArgs( String commandLineArgs ) { method isRunOnNewCluster (line 1558) | public boolean isRunOnNewCluster() { method setRunOnNewCluster (line 1562) | public void setRunOnNewCluster( boolean selected ) { method getBlocking (line 1571) | public boolean getBlocking() { method setBlocking (line 1575) | public void setBlocking( boolean blocking ) { method getLoggingInterval (line 1583) | public String getLoggingInterval() { method setLoggingInterval (line 1587) | public void setLoggingInterval( String loggingInterval ) { method getEmrRelease (line 1595) | public String getEmrRelease() { method setEmrRelease (line 1599) | public void setEmrRelease( String emrRelease ) { method isAlive (line 1614) | public boolean isAlive() { method setAlive (line 1618) | public void setAlive( boolean alive ) { method invertAlive (line 1624) | public void invertAlive() { method resolveFile (line 1628) | public FileObject resolveFile( Bowl bowl, String fileUri ) throws File... method getFileChooserHelper (line 1637) | protected S3VfsFileChooserHelper getFileChooserHelper() throws KettleF... method help (line 1648) | public void help() { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/AmazonEmrReleases.java type AmazonEmrReleases (line 20) | public enum AmazonEmrReleases { method AmazonEmrReleases (line 59) | AmazonEmrReleases( String emrRelease ) { method getEmrRelease (line 63) | public String getEmrRelease() { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/AmazonRegion.java type AmazonRegion (line 20) | public enum AmazonRegion { method AmazonRegion (line 45) | AmazonRegion( String regionId, String city, String region ) { method getHumanReadableRegion (line 51) | public String getHumanReadableRegion() { method extractRegionFromDescription (line 56) | public static String extractRegionFromDescription( String humanReadabl... FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/InstanceType.java class InstanceType (line 24) | public class InstanceType implements Comparable { method InstanceType (line 29) | public InstanceType( String type, String instanceFamily ) { method getType (line 34) | public String getType() { method setType (line 38) | public void setType( String type ) { method getInstanceFamily (line 42) | public String getInstanceFamily() { method setInstanceFamily (line 46) | public void setInstanceFamily( String instanceFamily ) { method createDescription (line 50) | public static String createDescription( InstanceType type ) { method getTypeFromDescription (line 54) | public static String getTypeFromDescription( String description ) { method equals (line 58) | @Override method hashCode (line 72) | @Override method compareTo (line 79) | @Override method extractInt (line 84) | private int extractInt( String type ) { method sortInstanceTypes (line 89) | public static List sortInstanceTypes( List insta... FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/AbstractClientFactory.java class AbstractClientFactory (line 20) | public abstract class AbstractClientFactory { method createClient (line 22) | public abstract T createClient( String accessKey, String secretKey, St... FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/AmazonClientCredentials.java class AmazonClientCredentials (line 26) | public class AmazonClientCredentials { method AmazonClientCredentials (line 31) | public AmazonClientCredentials( String accessKey, String secretKey, St... method getAWSCredentials (line 40) | public AWSCredentials getAWSCredentials() { method getRegion (line 44) | public String getRegion() { method extractRegion (line 48) | private String extractRegion( String region ) { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/ClientFactoriesManager.java class ClientFactoriesManager (line 28) | public class ClientFactoriesManager { method ClientFactoriesManager (line 33) | private ClientFactoriesManager() { method getInstance (line 42) | public static ClientFactoriesManager getInstance() { method createClient (line 49) | public T createClient( String accessKey, String secretKey, String ... method getClientFactory (line 55) | private AbstractClientFactory getClientFactory( ClientType clientType ) { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/ClientType.java type ClientType (line 19) | public enum ClientType { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/api/AimClient.java type AimClient (line 21) | public interface AimClient { method getEc2RolesFromAmazonAccount (line 23) | AbstractModelList getEc2RolesFromAmazonAccount(); method getEmrRolesFromAmazonAccount (line 25) | AbstractModelList getEmrRolesFromAmazonAccount(); FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/api/Ec2Client.java type Ec2Client (line 21) | public interface Ec2Client { method getAvailableSubnets (line 28) | List getAvailableSubnets(); class SubnetInfo (line 33) | class SubnetInfo { method SubnetInfo (line 41) | public SubnetInfo( String subnetId, String subnetName, String vpcId, method getSubnetId (line 51) | public String getSubnetId() { method getSubnetName (line 55) | public String getSubnetName() { method getVpcId (line 59) | public String getVpcId() { method getAvailabilityZone (line 63) | public String getAvailabilityZone() { method getCidrBlock (line 67) | public String getCidrBlock() { method getState (line 71) | public String getState() { method getDisplayString (line 79) | public String getDisplayString() { method toString (line 90) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/api/EmrClient.java type EmrClient (line 23) | public interface EmrClient { method runJobFlow (line 25) | void runJobFlow( String stagingS3FileUrl, String stagingS3BucketUrl, S... method getHadoopJobFlowId (line 30) | String getHadoopJobFlowId(); method getStepId (line 32) | String getStepId(); method addStepToExistingJobFlow (line 34) | void addStepToExistingJobFlow( String stagingS3FileUrl, String staging... method getCurrentClusterState (line 37) | String getCurrentClusterState(); method getCurrentStepState (line 39) | String getCurrentStepState(); method isClusterRunning (line 41) | boolean isClusterRunning(); method isStepRunning (line 43) | boolean isStepRunning(); method isRunning (line 45) | boolean isRunning(); method isClusterTerminated (line 47) | boolean isClusterTerminated(); method isStepFailed (line 49) | boolean isStepFailed(); method isStepNotSuccess (line 51) | boolean isStepNotSuccess(); method getJobFlowLogUri (line 53) | String getJobFlowLogUri()throws URISyntaxException; method stopSteps (line 55) | boolean stopSteps(); FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/api/PricingClient.java type PricingClient (line 24) | public interface PricingClient { method populateInstanceTypesForSelectedRegion (line 26) | List populateInstanceTypesForSelectedRegion() throws AWSPricin... FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/api/S3Client.java type S3Client (line 21) | public interface S3Client { method createBucketIfNotExists (line 30) | void createBucketIfNotExists( String stagingBucketName ); method deleteObjectFromBucket (line 32) | void deleteObjectFromBucket( String stagingBucketName, String key ); method putObjectInBucket (line 34) | void putObjectInBucket( String stagingBucketName, String key, File tmp... method readStepLogsFromS3 (line 36) | String readStepLogsFromS3( String stagingBucketName, String hadoopJobF... FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/AimClientFactory.java class AimClientFactory (line 25) | public class AimClientFactory extends AbstractClientFactory { method createClient (line 27) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/AimClientImpl.java class AimClientImpl (line 28) | public class AimClientImpl implements AimClient { method AimClientImpl (line 32) | public AimClientImpl( AmazonIdentityManagement aim ) { method getEc2RolesFromAmazonAccount (line 36) | @Override method getEmrRolesFromAmazonAccount (line 46) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/Ec2ClientFactory.java class Ec2ClientFactory (line 22) | public class Ec2ClientFactory extends AbstractClientFactory { method createClient (line 24) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/Ec2ClientImpl.java class Ec2ClientImpl (line 35) | public class Ec2ClientImpl implements Ec2Client { method Ec2ClientImpl (line 39) | public Ec2ClientImpl( String awsAccessKeyId, String awsSecretKey, Stri... method getAvailableSubnets (line 63) | @Override method extractNameFromTags (line 114) | private String extractNameFromTags( List tags ) { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/EmrClientFactory.java class EmrClientFactory (line 26) | public class EmrClientFactory extends AbstractClientFactory { method createClient (line 28) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/EmrClientImpl.java class EmrClientImpl (line 56) | public class EmrClientImpl implements EmrClient { method EmrClientImpl (line 75) | public EmrClientImpl( AmazonElasticMapReduce emrClient ) { method runJobFlow (line 79) | @Override method getHadoopJobFlowId (line 96) | @Override method getStepId (line 101) | @Override method addStepToExistingJobFlow (line 106) | @Override method isClusterRunning (line 130) | @Override method isStepRunning (line 144) | @Override method isRunning (line 161) | @Override method getCurrentClusterState (line 181) | @Override method getCurrentStepState (line 186) | @Override method isClusterTerminated (line 191) | @Override method isStepFailed (line 197) | @Override method isStepNotSuccess (line 202) | @Override method initEC2Instance (line 217) | private JobFlowInstancesConfig initEC2Instance( Integer numInsts, Stri... method initEmrCluster (line 233) | @VisibleForTesting method configureHiveStep (line 287) | private StepConfig configureHiveStep( String stagingS3qUrl, String cmd... method initHiveStep (line 317) | private StepConfig initHiveStep( String stagingS3qUrl, String cmdLineA... method configureHadoopStep (line 322) | private static HadoopJarStepConfig configureHadoopStep( String staging... method initHadoopStep (line 332) | private StepConfig initHadoopStep( String jarUrl, String mainClass, Li... method removeLineBreaks (line 353) | @VisibleForTesting method initSteps (line 361) | private List initSteps( String stagingS3FileUrl, String st... method parseJarStepArgs (line 382) | private List parseJarStepArgs( String cmdLineArgs ) { method replaceDoubleS3 (line 394) | private static String replaceDoubleS3( String token ) { method initApplications (line 402) | private List initApplications() { method initBootstrapActions (line 409) | private List initBootstrapActions( String boots... method configBootstrapActions (line 419) | private static List configBootstrapActions( Str... method configureBootstrapAction (line 502) | private static BootstrapActionConfig configureBootstrapAction( String ... method configArgs (line 522) | private static List configArgs( String args, String separator ) { method createBootstrapAction (line 543) | private static BootstrapActionConfig createBootstrapAction( String pat... method getSteps (line 557) | @VisibleForTesting method setStepsFromCluster (line 571) | @VisibleForTesting method getCurrentlyRunningStepId (line 576) | private String getCurrentlyRunningStepId() { method getSpecifiedRunningStep (line 580) | private String getSpecifiedRunningStep() { method terminateJobFlows (line 594) | @VisibleForTesting method cancelStepExecution (line 605) | @VisibleForTesting method stopSteps (line 618) | @Override method getActualClusterState (line 633) | private String getActualClusterState() { method getActualStepState (line 645) | private String getActualStepState() { method getJobFlowLogUri (line 658) | @Override method isAlive (line 669) | @VisibleForTesting method setAlive (line 674) | @VisibleForTesting FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/PricingClientFactory.java class PricingClientFactory (line 27) | public class PricingClientFactory extends AbstractClientFactory { method createClient (line 28) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/client/impl/S3ClientImpl.java class S3ClientImpl (line 30) | public class S3ClientImpl implements S3Client { method S3ClientImpl (line 34) | public S3ClientImpl( AmazonS3 s3Client ) { method createBucketIfNotExists (line 38) | @Override method deleteObjectFromBucket (line 45) | @Override method putObjectInBucket (line 50) | @Override method readStepLogsFromS3 (line 55) | @Override method readLogFromS3 (line 77) | protected String readLogFromS3( String stagingBucketName, String key ) { FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/emr/job/AmazonElasticMapReduceJobExecutor.java class AmazonElasticMapReduceJobExecutor (line 53) | @JobEntry( id = "EMRJobExecutorPlugin", image = "EMR.svg", name = "EMRJo... method getJarUrl (line 67) | public String getJarUrl() { method setJarUrl (line 71) | public void setJarUrl( String jarUrl ) { method AmazonElasticMapReduceJobExecutor (line 75) | public AmazonElasticMapReduceJobExecutor() { method getMainClass (line 78) | public String getMainClass( URL localJarUrl ) throws Exception { method isAlive (line 96) | public boolean isAlive() { method createStagingFile (line 100) | @Override method getStepBootstrapActions (line 113) | @Override method getMainClass (line 118) | @Override method getStepType (line 123) | public String getStepType() { method loadXML (line 127) | @Override method getXML (line 154) | @Override method loadRep (line 185) | @Override method saveRep (line 221) | @Override method buildFilename (line 256) | public String buildFilename( String filename ) { method evaluates (line 261) | @Override method isUnconditional (line 266) | @Override method getDialogClassName (line 271) | @Override method getMainClassFromManifest (line 279) | private Class getMainClassFromManifest( URL jarUrl, ClassLoader par... method getJarFile (line 291) | private JarFile getJarFile( final URL jarUrl, final ClassLoader parent... method loadClassByName (line 306) | private Class loadClassByName( final String className, final URL ja... method getClassesInJarWithMain (line 321) | public List> getClassesInJarWithMain( String jarUrl, ClassLoa... method getClassesInJar (line 338) | public List> getClassesInJar( String jarUrl, ClassLoader pare... FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/emr/ui/AmazonElasticMapReduceJobExecutorController.java class AmazonElasticMapReduceJobExecutorController (line 36) | public class AmazonElasticMapReduceJobExecutorController extends Abstrac... method AmazonElasticMapReduceJobExecutorController (line 48) | public AmazonElasticMapReduceJobExecutorController( XulDomContainer co... method initializeTextFields (line 56) | @Override method createBindings (line 63) | protected void createBindings() { method getDialogElementId (line 71) | @Override method syncModel (line 76) | @Override method getJarUrl (line 83) | public String getJarUrl() { method setJarUrl (line 87) | public void setJarUrl( String jarUrl ) { method configureJobEntry (line 96) | @Override method buildValidationErrorMessages (line 102) | @Override method init (line 118) | public void init() throws XulException, InvocationTargetException { method browseJar (line 128) | public void browseJar() throws KettleException, FileSystemException { method getJobEntry (line 143) | @Override method setJobEntry (line 148) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/emr/ui/AmazonElasticMapReduceJobExecutorDialog.java class AmazonElasticMapReduceJobExecutorDialog (line 31) | @PluginDialog( id = "EMRJobExecutorPlugin", image = "EMR.svg", pluginTyp... method AmazonElasticMapReduceJobExecutorDialog (line 35) | public AmazonElasticMapReduceJobExecutorDialog( Shell parent, JobEntry... method getXulFile (line 41) | @Override method getMessagesClass (line 46) | @Override method createController (line 51) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/hive/job/AmazonHiveJobExecutor.java class AmazonHiveJobExecutor (line 43) | @JobEntry( id = "HiveJobExecutorPlugin", image = "AWS-HIVE.svg", name = ... method AmazonHiveJobExecutor (line 56) | public AmazonHiveJobExecutor() { method getQUrl (line 59) | public String getQUrl() { method setQUrl (line 63) | public void setQUrl( String qUrl ) { method getBootstrapActions (line 67) | public String getBootstrapActions() { method setBootstrapActions (line 71) | public void setBootstrapActions( String bootstrapActions ) { method isAlive (line 75) | public boolean isAlive() { method createStagingFile (line 79) | @Override method getStepBootstrapActions (line 92) | @Override method getMainClass (line 97) | @Override method getStepType (line 102) | public String getStepType() { method loadXML (line 109) | @Override method getXML (line 144) | @Override method loadRep (line 179) | @Override method saveRep (line 221) | @Override method buildFilename (line 262) | public String buildFilename( String filename ) { method evaluates (line 275) | @Override method isUnconditional (line 280) | @Override method getDialogClassName (line 288) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/hive/ui/AmazonHiveJobExecutorController.java class AmazonHiveJobExecutorController (line 39) | public class AmazonHiveJobExecutorController extends AbstractAmazonJobEx... method AmazonHiveJobExecutorController (line 58) | public AmazonHiveJobExecutorController( XulDomContainer container, Abs... method initializeTextFields (line 66) | @Override method createBindings (line 75) | protected void createBindings() { method getDialogElementId (line 85) | @Override method syncModel (line 90) | @Override method buildValidationErrorMessages (line 100) | @Override method configureJobEntry (line 109) | @Override method init (line 122) | public void init() throws XulException, InvocationTargetException { method browseQ (line 137) | public void browseQ() throws KettleException, FileSystemException { method getQUrl (line 151) | public String getQUrl() { method setQUrl (line 155) | public void setQUrl( String qUrl ) { method getBootstrapActions (line 163) | public String getBootstrapActions() { method setBootstrapActions (line 167) | public void setBootstrapActions( String bootstrapActions ) { method invertAlive (line 175) | public void invertAlive() { method invertBlocking (line 179) | public void invertBlocking() { method getJobEntry (line 183) | @Override method setJobEntry (line 188) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/hive/ui/AmazonHiveJobExecutorDialog.java class AmazonHiveJobExecutorDialog (line 34) | @PluginDialog( id = "HiveJobExecutorPlugin", image = "AWS-HIVE.svg", plu... method AmazonHiveJobExecutorDialog (line 39) | public AmazonHiveJobExecutorDialog( Shell parent, JobEntryInterface jo... method getXulFile (line 44) | @Override method getMessagesClass (line 49) | @Override method createController (line 54) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/s3/S3VfsFileChooserHelper.java class S3VfsFileChooserHelper (line 25) | public class S3VfsFileChooserHelper extends VfsFileChooserHelper { method S3VfsFileChooserHelper (line 27) | public S3VfsFileChooserHelper( Shell shell, VfsFileChooserDialog fileC... method S3VfsFileChooserHelper (line 33) | public S3VfsFileChooserHelper( Shell shell, VfsFileChooserDialog fileC... method returnsUserAuthenticatedFileObjects (line 40) | @Override FILE: legacy-amazon/core/src/main/java/org/pentaho/amazon/s3/VfsFileChooserHelper.java class VfsFileChooserHelper (line 36) | public class VfsFileChooserHelper { method VfsFileChooserHelper (line 46) | public VfsFileChooserHelper(Shell shell, VfsFileChooserDialog fileChoo... method VfsFileChooserHelper (line 50) | public VfsFileChooserHelper(Shell shell, VfsFileChooserDialog fileChoo... method browse (line 59) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 64) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 69) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 74) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 79) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 84) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method browse (line 89) | public FileObject browse( String[] fileFilters, String[] fileFilterNam... method getVariableSpace (line 115) | public VariableSpace getVariableSpace() { method setVariableSpace (line 119) | public void setVariableSpace( VariableSpace variableSpace ) { method getFileSystemOptions (line 123) | public FileSystemOptions getFileSystemOptions() { method setFileSystemOptions (line 127) | public void setFileSystemOptions( FileSystemOptions fileSystemOptions ) { method getDefaultScheme (line 131) | public String getDefaultScheme() { method setDefaultScheme (line 135) | public void setDefaultScheme( String defaultScheme ) { method getSchemeRestriction (line 139) | public String getSchemeRestriction() { method setSchemeRestriction (line 147) | public void setSchemeRestriction( String schemeRestriction ) { method setSchemeRestrictions (line 152) | public void setSchemeRestrictions( String[] schemeRestrictions ) { method showFileScheme (line 156) | public boolean showFileScheme() { method setShowFileScheme (line 160) | public void setShowFileScheme( boolean showFileScheme ) { method returnsUserAuthenticatedFileObjects (line 164) | protected boolean returnsUserAuthenticatedFileObjects() { method setNamedCluster (line 168) | public void setNamedCluster( NamedCluster namedCluster ) { method getFileChooserDialog (line 192) | @VisibleForTesting method getShell (line 197) | @VisibleForTesting method getSchemeRestrictions (line 202) | @VisibleForTesting FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/AbstractAmazonJobExecutorControllerTest.java class AbstractAmazonJobExecutorControllerTest (line 59) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 73) | @Before method testPopulateRegions_getValidCountOfEnumElements (line 79) | @Test method testPopulateReleases_getValidCountOfEnumElements (line 89) | @Test method testPopulateReleases_setFirstEmrReleaseInJobEntry (line 99) | @Test method testPopulateReleases_getValidEmrReleaseFormJobEntry (line 113) | @Test method testPopulateReleases_addNewEmrReleaseToReleasesList (line 131) | @Test method testPopulateReleases_setEmrReleaseToFirstElementFromEmrReleasesList (line 143) | @Test method testPopulateEc2Roles_ec2RoleNull (line 162) | @Test method testPopulateEc2Roles_ec2RoleNotNull (line 170) | @Test method testPopulateEmrRoles_emrRoleNull (line 182) | @Test method testPopulateEmrRoles_emrRoleNotNull (line 190) | @Test method testPopulateMasterInstanceTypes_instanceTypeNull (line 202) | @Test method testPopulateMasterInstanceTypes_instanceTypeNotNull (line 210) | @Test method testPopulateSlaveInstanceTypes_instanceTypeNull (line 222) | @Test method testPopulateSlaveInstanceTypes_instanceTypeNotNull (line 230) | @Test method testSetEc2RolesFromAmazonAccount_RolesListNotEmpty (line 242) | @Test method testSetEc2RolesFromAmazonAccount_RolesListWithdefaultRole (line 263) | @Test method testSetEmrRolesFromAmazonAccount_RolesListNotEmpty (line 281) | @Test method testSetEmrRolesFromAmazonAccount_RolesListWithdefaultRole (line 302) | @Test method testPopulateInstanceTypesForSelectedRegion_instanceTypesListNotEmpty (line 320) | @Test method testPopulateInstanceTypesForSelectedRegion_instanceTypesListNull (line 341) | @Test method testPopulateInstanceTypesForSelectedRegion_catchException (line 358) | @Test method testGetEmrSettings_catchExceptionWhenKeysAreNull (line 377) | @Test method testGetEmrSettings_catchExceptionWhenRegionIsNull (line 402) | @Test method testGetEmrSettings_setAllValidParameters (line 428) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/AbstractAmazonJobExecutorTest.java class AbstractAmazonJobExecutorTest (line 44) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 55) | @Before method testGetS3FileObjectPath_validPath (line 65) | @Test method testGetKeyFromS3StagingDir_getNullKey (line 80) | @Test method testGetKeyFromS3StagingDir_getNotNullKey (line 91) | @Test method testSetS3BucketKey_keyNotNull (line 102) | @Test method testSetS3BucketKey_keyNull (line 121) | @Test method testSetS3BucketKey_keyEmptyString (line 140) | @Test method testGetStagingBucketName_OneFolder (line 159) | @Test method testGetStagingBucketName_withSubfolder (line 171) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/AmazonRegionTest.java class AmazonRegionTest (line 24) | public class AmazonRegionTest { method testGetHumanReadableRegion_getValidReadableRegion (line 26) | @Test method testExtractRegionFromDescription_getValidRegion (line 36) | @Test method testExtractRegionFromDescription_getDefaultRegion (line 46) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/InstanceTypeTest.java class InstanceTypeTest (line 29) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 35) | @Before method testSortInstanceTypes_getValidOrderOfSortedElements (line 66) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/PersistentPropertyChangeListener.java class PersistentPropertyChangeListener (line 24) | public class PersistentPropertyChangeListener implements PropertyChangeL... method PersistentPropertyChangeListener (line 27) | public PersistentPropertyChangeListener() { method propertyChange (line 31) | @Override method getReceivedEvents (line 39) | public List getReceivedEvents() { method getReceivedEventsWithChanges (line 46) | public List getReceivedEventsWithChanges() { FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/PropertyFiringObjectTest.java class PropertyFiringObjectTest (line 40) | public class PropertyFiringObjectTest { method testEMRFromFieldsEvent (line 42) | @Test method testHiveFormFieldsEvent (line 56) | @Test method testCommonFieldsEvent (line 71) | @Test method getFieldNamesFormJobEntryClass (line 82) | private List getFieldNamesFormJobEntryClass() { method collectChildFields (line 95) | private List collectChildFields( XulEventSource object, List collectParentFields( XulEventSource object ) { method testPropertyFiringForAllPrivateFieldsOf (line 139) | private void testPropertyFiringForAllPrivateFieldsOf( XulEventSource o... method findMethod (line 194) | private static Method findMethod( Class aClass, String methodName, ... method getTestValue (line 217) | private Object getTestValue( Class type, Object originalValue ) { FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/AmazonClientCredentialsTest.java class AmazonClientCredentialsTest (line 25) | public class AmazonClientCredentialsTest { method testGetAWSCredentials_getValidCredentials (line 27) | @Test method testGetRegion_getValidRegion (line 42) | @Test method testGetRegion_getDefaultRegion (line 53) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/ClientFactoriesManagerTest.java class ClientFactoriesManagerTest (line 30) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 35) | @Before method createClient_whenClientTypeIsS3 (line 40) | @Test method createClient_whenClientTypeIsEmr (line 50) | @Test method createClient_whenClientTypeIsPricing (line 60) | @Test method createClient_whenClientTypeIsAim (line 71) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/impl/AimClientImplTest.java class AimClientImplTest (line 36) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 42) | @Before method testGetEc2RolesFromAmazonAccount_getValidListOfRoles (line 48) | @Test method testGetEmrRolesFromAmazonAccount_getValidListOfRoles (line 74) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/impl/Ec2ClientFactoryTest.java class Ec2ClientFactoryTest (line 22) | public class Ec2ClientFactoryTest { method testCreateClient_WithBasicCredentials (line 24) | @Test method testCreateClient_WithSessionToken (line 41) | @Test method testCreateClient_WithEmptySessionToken (line 59) | @Test method testCreateClient_DifferentRegions (line 77) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/impl/Ec2ClientImplTest.java class Ec2ClientImplTest (line 31) | public class Ec2ClientImplTest { method setUp (line 36) | @Before method testGetAvailableSubnets_Success (line 47) | @Test method testGetAvailableSubnets_NoNameTag (line 98) | @Test method testGetAvailableSubnets_EmptyResult (line 128) | @Test method testGetAvailableSubnets_Exception (line 145) | @Test method testSubnetInfo_GetDisplayString (line 159) | @Test method testSubnetInfo_GetDisplayString_NoName (line 179) | @Test method testSubnetInfo_GetDisplayString_EmptyName (line 199) | @Test method testSubnetInfo_Getters (line 219) | @Test method testGetAvailableSubnets_MultipleTags (line 240) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/impl/EmrClientImplTest.java class EmrClientImplTest (line 46) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 53) | @Before method testInitEmrCluster_setRequestParamsForHiveStep (line 61) | @Test method testInitEmrCluster_setRequestParamsForEmrStep (line 86) | @Test method testInitEmrCluster_checkStepParamsForEmrStep (line 111) | @Test method testInitEmrCluster_checkStepParamsForHiveStep (line 141) | @Test method testAddStepToExistingJobFlow_getIdOfRunningStep (line 162) | @Test method testStopSteps_whenLeaveClusterAlive (line 199) | @Test method testStopSteps_whenNotLeaveClusterAlive (line 215) | @Test method testRemoveLineBreaks_whenBootstrapActionStringIsNull (line 231) | @Test method testRemoveLineBreaks_whenBootstrapActionStringIsSpaces (line 237) | @Test method testRemoveLineBreaks_whenBootstrapActionStringIsEmpty (line 248) | @Test method testRemoveLineBreaks_whenBootstrapActionStringIsNotNull (line 259) | @Test method testRemoveLineBreaks_whenBootstrapActionStringEqualsToExpectedString (line 270) | @Test method setJobEntryFields (line 281) | private void setJobEntryFields() { FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/impl/PricingClientImplTest.java class PricingClientImplTest (line 35) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 40) | @Before method testPopulateInstanceTypesForSelectedRegion_withValidValues (line 46) | @Test method testPopulateInstanceTypesForSelectedRegion_whenDescriptionIsNull (line 99) | @Test method testPopulateInstanceTypesForSelectedRegion_whenDescriptionIsEmpty (line 111) | @Test FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/client/impl/S3ClientImplTest.java class S3ClientImplTest (line 47) | @RunWith( MockitoJUnitRunner.class ) method setUp (line 60) | @Before method testReadStepLogsFromS3_whenLogFileExistsInS3 (line 75) | @Test method testReadStepLogsFromS3_whenLogFileNotExistsInS3 (line 112) | @Test method createGzArchive (line 147) | private void createGzArchive() throws Exception { FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/emr/job/AmazonElasticMapReduceJobExecutorLoadSaveTest.java class AmazonElasticMapReduceJobExecutorLoadSaveTest (line 21) | public class AmazonElasticMapReduceJobExecutorLoadSaveTest method getJobEntryClass (line 24) | @Override method listCommonAttributes (line 29) | @Override FILE: legacy-amazon/core/src/test/java/org/pentaho/amazon/hive/job/AmazonHiveJobExecutorLoadSaveTest.java class AmazonHiveJobExecutorLoadSaveTest (line 21) | public class AmazonHiveJobExecutorLoadSaveTest extends JobEntryLoadSaveT... method getJobEntryClass (line 23) | @Override method listCommonAttributes (line 28) | @Override FILE: legacy-core/src/main/java/org/pentaho/big/data/api/services/BigDataServicesHelper.java class BigDataServicesHelper (line 24) | public class BigDataServicesHelper { method BigDataServicesHelper (line 27) | private BigDataServicesHelper() { method getNamedClusterServiceLocator (line 30) | public static NamedClusterServiceLocator getNamedClusterServiceLocator... method getHadoopFileSystemLocator (line 40) | public static HadoopFileSystemLocator getHadoopFileSystemLocator() { method getShimIdentifier (line 50) | public static String getShimIdentifier() { method getNamedClusterService (line 59) | public static NamedClusterService getNamedClusterService() { FILE: legacy/src/main/java/org/pentaho/di/core/hadoop/HadoopConfigurationInfo.java class HadoopConfigurationInfo (line 19) | public class HadoopConfigurationInfo { method HadoopConfigurationInfo (line 25) | public HadoopConfigurationInfo( String id, String name, boolean isActi... method getId (line 32) | public String getId() { method getName (line 36) | public String getName() { method isActive (line 40) | public boolean isActive() { method isWillBeActiveAfterRestart (line 44) | public boolean isWillBeActiveAfterRestart() { FILE: legacy/src/main/java/org/pentaho/di/core/hadoop/HadoopConfigurationPrompter.java type HadoopConfigurationPrompter (line 30) | public interface HadoopConfigurationPrompter { method getConfigurationSelection (line 31) | String getConfigurationSelection( List hadoop... method promptForRestart (line 33) | void promptForRestart(); FILE: legacy/src/main/java/org/pentaho/di/core/hadoop/HadoopSpoonPlugin.java class HadoopSpoonPlugin (line 21) | @LifecyclePlugin( id = "HadoopSpoonPlugin", name = "Hadoop Spoon Plugin" ) method onStart (line 28) | public void onStart( LifeEventHandler arg0 ) { method onExit (line 32) | public void onExit( LifeEventHandler arg0 ) { method getLabelText (line 36) | public String getLabelText() { method getLastValue (line 40) | public Object getLastValue() { method getType (line 44) | public DisplayType getType() { method setValue (line 48) | public void setValue( Object value ) { FILE: legacy/src/main/java/org/pentaho/di/core/hadoop/NoShimSpecifiedException.java class NoShimSpecifiedException (line 29) | public class NoShimSpecifiedException extends ConfigurationException { method NoShimSpecifiedException (line 30) | public NoShimSpecifiedException( String message ) { FILE: legacy/src/main/java/org/pentaho/di/core/hadoop/SpoonExtensionPoint.java class SpoonExtensionPoint (line 32) | @SpoonPluginCategories( { "repository-explorer" } ) @SpoonPlugin( id = "... method applyToContainer (line 41) | public void applyToContainer( String category, XulDomContainer contain... method getLifecycleListener (line 55) | public SpoonLifecycleListener getLifecycleListener() { method getPerspective (line 59) | public SpoonPerspective getPerspective() { FILE: legacy/src/main/java/org/pentaho/di/trans/steps/avroinput/AvroInput.java class AvroInput (line 45) | public class AvroInput extends BaseStep implements StepInterface { method AvroInput (line 50) | public AvroInput( method processRow (line 62) | @Override method setStopped (line 203) | @Override FILE: legacy/src/main/java/org/pentaho/di/trans/steps/avroinput/AvroInputData.java class AvroInputData (line 55) | public class AvroInputData extends BaseStepData implements StepDataInter... method cleansePath (line 152) | public static String cleansePath( String path ) { class AvroArrayExpansion (line 194) | protected static class AvroArrayExpansion { method AvroArrayExpansion (line 209) | public AvroArrayExpansion( List subFields ) { method init (line 219) | public void init() throws KettleException { method reset (line 260) | public void reset( VariableSpace space ) { method convertToKettleValues (line 289) | public Object[][] convertToKettleValues( method convertToKettleValues (line 435) | public Object[][] convertToKettleValues( GenericData.Array array, Sc... method convertToKettleValues (line 588) | public Object[][] convertToKettleValues( Record record, Schema s, Sc... method getOutputRowMeta (line 693) | public RowMetaInterface getOutputRowMeta() { method createAvroField (line 706) | protected static AvroInputMeta.AvroField createAvroField( String path,... method checkUnion (line 760) | protected static Schema checkUnion( Schema s ) throws KettleException { method checkUnionForLeafTypes (line 793) | protected static List checkUnionForLeafTypes( Schema s ) { method getLeafFields (line 826) | protected static List getLeafFields( Schema s... method processUnion (line 874) | protected static void processUnion( String path, Schema s, List fields ) { method setVariableTableFields (line 934) | protected void setVariableTableFields( List... method getData (line 958) | protected void getData() { method checkWidgets (line 997) | private void checkWidgets() { method preview (line 1034) | private void preview() { method getIncomingFields (line 1076) | private void getIncomingFields() { method populateFieldsCombo (line 1088) | private void populateFieldsCombo() { FILE: legacy/src/main/java/org/pentaho/di/trans/steps/avroinput/AvroInputMeta.java class AvroInputMeta (line 75) | @Step( id = "AvroInput", image = "ui/images/deprecated.svg", name = "Avr... class LookupField (line 93) | public static class LookupField { method init (line 119) | public boolean init( RowMetaInterface inRowMeta, VariableSpace space... method setVariable (line 149) | public void setVariable( VariableSpace space, Object[] inRow ) { class AvroField (line 179) | public static class AvroField { method init (line 211) | public void init( int outputIndex ) throws KettleException { method reset (line 249) | public void reset( VariableSpace space ) { method getKettleValue (line 269) | protected Object getKettleValue( Object fieldValue ) throws KettleEx... method getPrimitive (line 302) | protected Object getPrimitive( Object fieldValue, Schema s ) throws ... method convertToKettleValue (line 368) | public Object convertToKettleValue( method convertToKettleValue (line 461) | public Object convertToKettleValue( GenericData.Array array, Schema ... method convertToKettleValue (line 564) | public Object convertToKettleValue( GenericData.Record record, Schem... method setAvroInField (line 730) | public void setAvroInField( boolean a ) { method getAvroInField (line 739) | public boolean getAvroInField() { method setAvroFieldName (line 749) | public void setAvroFieldName( String f ) { method getAvroFieldName (line 758) | public String getAvroFieldName() { method setSchemaInField (line 768) | public void setSchemaInField( boolean s ) { method getSchemaInField (line 777) | public boolean getSchemaInField() { method setSchemaFieldName (line 787) | public void setSchemaFieldName( String fn ) { method getSchemaFieldName (line 796) | public String getSchemaFieldName() { method setSchemaInFieldIsPath (line 806) | public void setSchemaInFieldIsPath( boolean p ) { method getSchemaInFieldIsPath (line 815) | public boolean getSchemaInFieldIsPath() { method setCacheSchemasInMemory (line 825) | public void setCacheSchemasInMemory( boolean c ) { method getCacheSchemasInMemory (line 834) | public boolean getCacheSchemasInMemory() { method setFilename (line 844) | public void setFilename( String filename ) { method getFilename (line 853) | public String getFilename() { method setSchemaFilename (line 863) | public void setSchemaFilename( String schemaFile ) { method getSchemaFilename (line 872) | public String getSchemaFilename() { method getAvroIsJsonEncoded (line 881) | public boolean getAvroIsJsonEncoded() { method setAvroIsJsonEncoded (line 891) | public void setAvroIsJsonEncoded( boolean j ) { method setAvroFields (line 901) | public void setAvroFields( List fields ) { method getAvroFields (line 910) | public List getAvroFields() { method getLookupFields (line 919) | public List getLookupFields() { method setLookupFields (line 929) | public void setLookupFields( List lookups ) { method setDontComplainAboutMissingFields (line 940) | public void setDontComplainAboutMissingFields( boolean c ) { method getDontComplainAboutMissingFields (line 950) | public boolean getDontComplainAboutMissingFields() { method getFields (line 961) | @Override method check (line 1020) | public void check( List remarks, TransMeta trans... method getStep (line 1030) | public StepInterface getStep( StepMeta stepMeta, StepDataInterface ste... method getStepData (line 1041) | public StepDataInterface getStepData() { method indexedValsList (line 1052) | protected static String indexedValsList( List indexedVals ) { method indexedValsList (line 1072) | protected static List indexedValsList( String indexedVals ) { method getXML (line 1088) | @Override method loadXML (line 1164) | @Override method readRep (line 1248) | @Override method saveRep (line 1307) | @Override method setDefault (line 1358) | public void setDefault() { method getDialogClassName (line 1366) | @Override method supportsErrorHandling (line 1376) | @Override FILE: legacy/src/main/java/org/pentaho/di/trans/steps/couchdbinput/CouchDbInput.java class CouchDbInput (line 46) | public class CouchDbInput extends BaseStep implements StepInterface { method CouchDbInput (line 57) | public CouchDbInput( StepMeta stepMeta, StepDataInterface stepDataInte... method CouchDbInput (line 63) | @Deprecated method buildUrl (line 71) | public static String buildUrl( String hostname, int port, String db, S... method processRow (line 82) | public boolean processRow( StepMetaInterface smi, StepDataInterface sd... method sendBufferRow (line 185) | private void sendBufferRow( boolean lastRow ) throws KettleStepExcepti... method removeTrailingCharacter (line 216) | private int removeTrailingCharacter( StringBuilder buffer, int pos, ch... method removeTrailingSpaces (line 223) | private int removeTrailingSpaces( StringBuilder buffer, int pos ) { method init (line 230) | public boolean init( StepMetaInterface stepMetaInterface, StepDataInte... method dispose (line 304) | @Override class HttpClientFactory (line 319) | @Deprecated method createHttpClient (line 321) | public HttpClient createHttpClient() { method createHttpClient (line 326) | @VisibleForTesting class GetMethodFactory (line 338) | static class GetMethodFactory { method create (line 339) | public HttpGet create( String url ) { method createHttpClientManager (line 344) | @VisibleForTesting method getHttpClientContext (line 349) | @VisibleForTesting FILE: legacy/src/main/java/org/pentaho/di/trans/steps/couchdbinput/CouchDbInputData.java class CouchDbInputData (line 27) | public class CouchDbInputData extends BaseStepData implements StepDataIn... FILE: legacy/src/main/java/org/pentaho/di/trans/steps/couchdbinput/CouchDbInputMeta.java class CouchDbInputMeta (line 45) | @Step( id = "CouchDbInput", image = "couchdb-input.svg", name = "CouchDb... method CouchDbInputMeta (line 60) | public CouchDbInputMeta() { method loadXML (line 85) | @Override method clone (line 103) | @Override method setDefault (line 108) | @Override method getFields (line 116) | @Override method getXML (line 124) | @Override method readRep (line 141) | @Override method saveRep (line 159) | @Override method getStep (line 177) | @Override method getStepData (line 183) | @Override method getHostname (line 191) | public String getHostname() { method setHostname (line 198) | public void setHostname( String hostname ) { method getPort (line 205) | public String getPort() { method setPort (line 212) | public void setPort( String port ) { method getDbName (line 219) | public String getDbName() { method setDbName (line 226) | public void setDbName( String dbName ) { method getAuthenticationUser (line 233) | public String getAuthenticationUser() { method setAuthenticationUser (line 240) | public void setAuthenticationUser( String authenticationUser ) { method getAuthenticationPassword (line 247) | public String getAuthenticationPassword() { method setAuthenticationPassword (line 254) | public void setAuthenticationPassword( String authenticationPassword ) { method getViewName (line 261) | public String getViewName() { method setViewName (line 268) | public void setViewName( String viewName ) { method getDesignDocument (line 275) | public String getDesignDocument() { method setDesignDocument (line 282) | public void setDesignDocument( String designDocument ) { FILE: legacy/src/main/java/org/pentaho/di/ui/core/namedcluster/HadoopClusterDelegate.java type HadoopClusterDelegate (line 24) | public interface HadoopClusterDelegate { method editNamedCluster (line 25) | String editNamedCluster( IMetaStore metaStore, NamedCluster namedClust... method newNamedCluster (line 27) | String newNamedCluster( VariableSpace variableSpace, IMetaStore metaSt... method dupeNamedCluster (line 29) | void dupeNamedCluster( IMetaStore metaStore, NamedCluster nc, Shell sh... method delNamedCluster (line 31) | void delNamedCluster( IMetaStore metaStore, NamedCluster namedCluster ); FILE: legacy/src/main/java/org/pentaho/di/ui/core/namedcluster/NamedClusterDialog.java type NamedClusterDialog (line 20) | public interface NamedClusterDialog { method setNamedCluster (line 21) | void setNamedCluster( NamedCluster namedCluster ); method getNamedCluster (line 23) | NamedCluster getNamedCluster(); method setNewClusterCheck (line 25) | void setNewClusterCheck( boolean newClusterCheck ); method open (line 27) | String open(); FILE: legacy/src/main/java/org/pentaho/di/ui/core/namedcluster/NamedClusterUIFactory.java type NamedClusterUIFactory (line 24) | public interface NamedClusterUIFactory { method createNamedClusterWidget (line 25) | NamedClusterWidget createNamedClusterWidget( Composite parent, boolean... method createHadoopClusterDelegate (line 27) | HadoopClusterDelegate createHadoopClusterDelegate( Spoon spoon ); method createNamedClusterDialog (line 29) | NamedClusterDialog createNamedClusterDialog( Shell shell ); method getNamedClusterFromVfsFileChooser (line 31) | NamedCluster getNamedClusterFromVfsFileChooser( Spoon spoon ); FILE: legacy/src/main/java/org/pentaho/di/ui/core/namedcluster/NamedClusterUIHelper.java class NamedClusterUIHelper (line 25) | public class NamedClusterUIHelper { method getNamedClusterUIFactory (line 28) | public static synchronized NamedClusterUIFactory getNamedClusterUIFact... method setNamedClusterUIFactory (line 38) | public static void setNamedClusterUIFactory( method getNamedClusters (line 49) | public static List getNamedClusters() { method getNamedCluster (line 61) | public static NamedCluster getNamedCluster( String namedCluster ) thro... class NamedClusterUIFactoryHolder (line 69) | static class NamedClusterUIFactoryHolder { method getNamedClusterUIFactory (line 72) | public synchronized NamedClusterUIFactory getNamedClusterUIFactory() { method setNamedClusterUIFactory (line 83) | public synchronized void setNamedClusterUIFactory( NamedClusterUIFac... FILE: legacy/src/main/java/org/pentaho/di/ui/core/namedcluster/NamedClusterWidget.java type NamedClusterWidget (line 23) | public interface NamedClusterWidget { method initiate (line 24) | void initiate(); method getComposite (line 26) | Composite getComposite(); method getSelectedNamedCluster (line 28) | NamedCluster getSelectedNamedCluster(); method addSelectionListener (line 30) | void addSelectionListener( SelectionListener selectionListener ); method setSelectedNamedCluster (line 32) | void setSelectedNamedCluster( String name ); FILE: legacy/src/main/java/org/pentaho/di/ui/job/entries/hadoopjobexecutor/UserDefinedItem.java class UserDefinedItem (line 20) | public class UserDefinedItem implements XulEventSource { method UserDefinedItem (line 24) | public UserDefinedItem() { method getName (line 27) | public String getName() { method setName (line 31) | public void setName( String name ) { method getValue (line 35) | public String getValue() { method setValue (line 39) | public void setValue( String value ) { method addPropertyChangeListener (line 43) | public void addPropertyChangeListener( PropertyChangeListener listener... method removePropertyChangeListener (line 46) | public void removePropertyChangeListener( PropertyChangeListener liste... FILE: legacy/src/main/java/org/pentaho/di/ui/repository/repositoryexplorer/controllers/NamedClustersController.java class NamedClustersController (line 52) | public class NamedClustersController extends LazilyInitializedController... method NamedClustersController (line 86) | public NamedClustersController() { method getName (line 89) | @Override method init (line 94) | public void init( Repository repository ) throws ControllerInitializat... method getNamedClusterService (line 98) | private NamedClusterService getNamedClusterService() { method getNamedClusterDialog (line 105) | private NamedClusterDialog getNamedClusterDialog() { method createBindings (line 112) | private void createBindings() { method doLazyInit (line 135) | @Override method getRepository (line 166) | public Repository getRepository() { method setRepReadOnly (line 170) | public void setRepReadOnly( boolean isRepReadOnly ) { method isRepReadOnly (line 189) | public boolean isRepReadOnly() { method refreshNamedClustersList (line 193) | private void refreshNamedClustersList() { method createNamedCluster (line 217) | public void createNamedCluster() { method pollContextChangeVetoResults (line 256) | List pollContextChangeVetoResults() { method addContextChangeVetoer (line 266) | public void addContextChangeVetoer( ContextChangeVetoer listener ) { method removeContextChangeVetoer (line 273) | public void removeContextChangeVetoer( ContextChangeVetoer listener ) { method contains (line 279) | private boolean contains( TYPE type, List typeList ) { method compareNamedClusters (line 288) | boolean compareNamedClusters( List ro1, List namedCluste... method getRepositoryNamedClusters (line 418) | public List getRepositoryNamedClusters() { method setRepositoryNamedClusters (line 422) | public void setRepositoryNamedClusters( List repositor... method enableButtons (line 427) | public void enableButtons( boolean enableRemove ) { method tabClicked (line 432) | public void tabClicked() { method testForNoController (line 436) | private boolean testForNoController( Throwable e ) { FILE: legacy/src/main/java/org/pentaho/di/ui/repository/repositoryexplorer/model/UINamedCluster.java class UINamedCluster (line 25) | public class UINamedCluster extends XulEventSourceAdapter { method UINamedCluster (line 33) | public UINamedCluster() { method UINamedCluster (line 37) | public UINamedCluster( NamedCluster namedCluster, Repository rep ) { method getName (line 43) | public String getName() { method getDisplayName (line 50) | public String getDisplayName() { method getType (line 54) | public String getType() { method getDateModified (line 58) | public String getDateModified() { method getNamedCluster (line 62) | public NamedCluster getNamedCluster() { FILE: legacy/src/main/java/org/pentaho/di/ui/repository/repositoryexplorer/model/UINamedClusterObjectRegistry.java class UINamedClusterObjectRegistry (line 21) | public class UINamedClusterObjectRegistry { method UINamedClusterObjectRegistry (line 28) | private UINamedClusterObjectRegistry() { method getInstance (line 31) | public static UINamedClusterObjectRegistry getInstance() { method constructUINamedCluster (line 38) | public UINamedCluster constructUINamedCluster( NamedCluster namedClust... FILE: legacy/src/main/java/org/pentaho/di/ui/repository/repositoryexplorer/model/UINamedClusters.java class UINamedClusters (line 20) | public class UINamedClusters extends AbstractModelList { method UINamedClusters (line 24) | public UINamedClusters() { method UINamedClusters (line 27) | public UINamedClusters( List namedClusters ) { method fireCollectionChanged (line 31) | @Override FILE: legacy/src/main/java/org/pentaho/di/ui/trans/steps/couchdbinput/CouchDbInputDialog.java class CouchDbInputDialog (line 49) | public class CouchDbInputDialog extends BaseStepDialog implements StepDi... method CouchDbInputDialog (line 63) | public CouchDbInputDialog( Shell parent, Object in, TransMeta tr, Stri... method open (line 68) | public String open() { method getData (line 327) | public void getData() { method cancel (line 340) | private void cancel() { method getInfo (line 346) | private void getInfo( CouchDbInputMeta meta ) { method ok (line 358) | private void ok() { method preview (line 370) | private void preview() { FILE: legacy/src/main/java/org/pentaho/di/ui/vfs/VfsFileChooserHelper.java class VfsFileChooserHelper (line 38) | public class VfsFileChooserHelper { method VfsFileChooserHelper (line 48) | public VfsFileChooserHelper( Shell shell, VfsFileChooserDialog fileCho... method VfsFileChooserHelper (line 52) | public VfsFileChooserHelper( Shell shell, VfsFileChooserDialog fileCho... method browse (line 61) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method browse (line 66) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method browse (line 71) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method browse (line 76) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method browse (line 81) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method browse (line 86) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method browse (line 91) | public FileObject browse( Bowl bowl, String[] fileFilters, String[] fi... method getVariableSpace (line 116) | public VariableSpace getVariableSpace() { method setVariableSpace (line 120) | public void setVariableSpace( VariableSpace variableSpace ) { method getFileSystemOptions (line 124) | public FileSystemOptions getFileSystemOptions() { method setFileSystemOptions (line 128) | public void setFileSystemOptions( FileSystemOptions fileSystemOptions ) { method getDefaultScheme (line 132) | public String getDefaultScheme() { method setDefaultScheme (line 136) | public void setDefaultScheme( String defaultScheme ) { method getSchemeRestriction (line 140) | public String getSchemeRestriction() { method setSchemeRestriction (line 148) | public void setSchemeRestriction( String schemeRestriction ) { method setSchemeRestrictions (line 153) | public void setSchemeRestrictions( String[] schemeRestrictions ) { method showFileScheme (line 157) | public boolean showFileScheme() { method setShowFileScheme (line 161) | public void setShowFileScheme( boolean showFileScheme ) { method returnsUserAuthenticatedFileObjects (line 165) | protected boolean returnsUserAuthenticatedFileObjects() { method setNamedCluster (line 169) | public void setNamedCluster( NamedCluster namedCluster ) { method getFileChooserDialog (line 193) | @VisibleForTesting method getShell (line 198) | @VisibleForTesting method getSchemeRestrictions (line 203) | @VisibleForTesting FILE: legacy/src/main/java/org/pentaho/hadoop/PluginPropertiesUtil.java class PluginPropertiesUtil (line 31) | public class PluginPropertiesUtil { method PluginPropertiesUtil (line 38) | public PluginPropertiesUtil() { method PluginPropertiesUtil (line 42) | public PluginPropertiesUtil( String versionPropertiesFile ) { method getVersionPlaceholder (line 46) | private static String getVersionPlaceholder( String versionPropertiesF... method loadProperties (line 65) | protected Properties loadProperties( PluginInterface plugin, String re... method loadPluginProperties (line 93) | public Properties loadPluginProperties( PluginInterface plugin ) throw... method getVersion (line 100) | public String getVersion() { FILE: legacy/src/main/java/org/pentaho/hadoop/PropertiesConfigurationProperties.java class PropertiesConfigurationProperties (line 44) | public class PropertiesConfigurationProperties extends Properties { method PropertiesConfigurationProperties (line 47) | public PropertiesConfigurationProperties( FileObject fileObject ) thro... method PropertiesConfigurationProperties (line 51) | public PropertiesConfigurationProperties( PropertiesConfiguration prop... method initPropertiesConfiguration (line 55) | private static PropertiesConfiguration initPropertiesConfiguration( Fi... method getProperty (line 65) | @Override public synchronized String getProperty( String key ) { method getProperty (line 69) | @Override public synchronized String getProperty( String key, String d... method get (line 73) | @Override public synchronized Object get( Object key ) { method setProperty (line 81) | @Override public synchronized Object setProperty( String key, String v... method put (line 85) | @Override public synchronized Object put( Object key, Object value ) { method getPropertyNames (line 94) | private Set getPropertyNames() { method stringPropertyNames (line 103) | @Override public synchronized Set stringPropertyNames() { method keySet (line 107) | @Override public synchronized Set keySet() { method toMap (line 111) | private Map toMap() { method entrySet (line 121) | @Override public synchronized Set> entrySet() { method size (line 126) | @Override public synchronized int size() { method isEmpty (line 130) | @Override public synchronized boolean isEmpty() { method keys (line 134) | @Override public synchronized Enumeration keys() { method elements (line 138) | @Override public synchronized Enumeration elements() { method contains (line 142) | @Override public synchronized boolean contains( Object value ) { method containsValue (line 146) | @Override public synchronized boolean containsValue( Object value ) { method propertyNames (line 150) | @Override public synchronized Enumeration propertyNames() { method values (line 154) | @Override public synchronized Collection values() { method containsKey (line 158) | @Override public synchronized boolean containsKey( Object key ) { method remove (line 165) | @Override public synchronized Object remove( Object key ) { method putAll (line 174) | @Override public synchronized void putAll( Map t ) { method clear (line 180) | @Override public synchronized void clear() { method load (line 184) | @Override public synchronized void load( Reader reader ) throws IOExce... method load (line 188) | @Override public synchronized void load( InputStream inStream ) throws... method save (line 192) | @Override public void save( OutputStream out, String comments ) { method store (line 196) | @Override public void store( Writer writer, String comments ) throws I... method store (line 200) | @Override public void store( OutputStream out, String comments ) throw... method loadFromXML (line 204) | @Override public synchronized void loadFromXML( InputStream in ) method storeToXML (line 209) | @Override public void storeToXML( OutputStream os, String comment ) th... method storeToXML (line 213) | @Override public void storeToXML( OutputStream os, String comment, Str... method list (line 217) | @Override public void list( PrintStream out ) { method list (line 221) | @Override public void list( PrintWriter out ) { method rehash (line 225) | @Override protected void rehash() { method clone (line 229) | @Override public synchronized Object clone() { FILE: legacy/src/test/java/org/pentaho/database/TestSelectCount.java class TestSelectCount (line 33) | public class TestSelectCount { method testHiveDatabase (line 43) | @Test FILE: legacy/src/test/java/org/pentaho/di/core/hadoop/HadoopConfigurationInfoTest.java class HadoopConfigurationInfoTest (line 26) | public class HadoopConfigurationInfoTest { method setup (line 33) | @Before method createHadoopConfigurationInfo (line 42) | private void createHadoopConfigurationInfo() { method testGetId (line 46) | @Test method testGetName (line 51) | @Test method testIsActive (line 56) | @Test method testWillBeActiveAfterRestart (line 64) | @Test FILE: legacy/src/test/java/org/pentaho/di/trans/steps/avroinput/AvroInputDataTest.java class AvroInputDataTest (line 35) | public class AvroInputDataTest { method testCleansePath (line 36) | @Test method testAvroArrayExpansionInitThrowsExceptionIfExpansionPathIsEmpty (line 45) | @Test( expected = KettleException.class ) method testConvertToKettleValuesNullMap (line 50) | @Test method testConvertToKettleValuesPartsMapMalformed (line 56) | @Test( expected = KettleException.class ) method testConvertToKettleValuesMapMalformed2 (line 76) | @Test( expected = KettleException.class ) method testConvertToKettleValuesMapMalformed (line 96) | public void testConvertToKettleValuesMapMalformed() throws KettleExcep... FILE: legacy/src/test/java/org/pentaho/di/trans/steps/avroinput/AvroInputMetaAvroFieldTest.java class AvroInputMetaAvroFieldTest (line 60) | public class AvroInputMetaAvroFieldTest { method before (line 65) | @BeforeClass method setup (line 71) | @Before method testInitNoPathSet (line 89) | @Test( expected = KettleException.class ) method testGetKettleValueBigNumber (line 95) | @Test method testGetKettleValueBinary (line 104) | @Test method testGetKettleValueBoolean (line 112) | @Test method testGetKettleValueDate (line 125) | @Test method testGetKettleValueInteger (line 133) | @Test method testGetKettleValueNumber (line 147) | @Test method testGetKettleValueString (line 160) | @Test method testGetKettleValueInternetAddress (line 168) | @Test method testGetPrimitiveNull (line 180) | @Test method testGetPrimitiveFixed (line 186) | @Test method testConvertToKettleValueMapNull (line 196) | @Test method testConvertToKettleValueMapExceptionWithNoTempParts (line 201) | @Test( expected = KettleException.class ) method testConvertToKettleValueMapExceptionWithMalformedPath (line 207) | @Test( expected = KettleException.class ) method testConvertToKettleValueMapNullValue (line 214) | @Test method testConvertToKettleValueMapStringValue (line 222) | @Test method testConvertToKettleValueArrayNull (line 238) | @Test method testConvertToKettleValueArrayExceptionWithNoTempParts (line 243) | @Test( expected = KettleException.class ) method testConvertToKettleValueArrayWithMalformedPath (line 251) | @Test( expected = KettleException.class ) method testConvertToKettleValueArrayNumberFormatException (line 260) | @Test( expected = KettleException.class ) method testConvertToKettleValueArrayIndexLessThanZero (line 270) | @Test method testConvertToKettleValueArrayIndexTooLarge (line 280) | @Test method testConvertToKettleValueArrayNullElement (line 290) | @Test method testConvertToKettleValueArrayStringValue (line 302) | @Test method testConvertToKettleValueRecordNull (line 319) | @Test method testConvertToKettleValueRecordExceptionWithNoTempParts (line 324) | @Test( expected = KettleException.class ) method testConvertToKettleValueRecordWithMalformedPath (line 332) | @Test( expected = KettleException.class ) method testConvertToKettleValueRecordNullSchema (line 342) | @Test( expected = AvroRuntimeException.class ) method testConvertToKettleValueRecordStringValue (line 353) | @Test method testGetDefaultValueFromDefaultSchemaIfNull (line 373) | @Test method testGetPrimitiveFromConvertNode (line 393) | @Test FILE: legacy/src/test/java/org/pentaho/di/trans/steps/avroinput/AvroInputMetaLookupFieldTest.java class AvroInputMetaLookupFieldTest (line 41) | public class AvroInputMetaLookupFieldTest { method setup (line 49) | @Before method testInitNullRowMeta (line 68) | @Test method testInitFieldMissing (line 73) | @Test method testInitVariableNameEmpty (line 78) | @Test method testInit (line 84) | @Test method setVariableInvalid (line 89) | @Test method testSetVariableNull (line 96) | @Test method testSetVariableExceptionToNull (line 103) | @Test method testSetVariableNotNull (line 116) | @Test method testSetVariableNullDefault (line 124) | @Test FILE: legacy/src/test/java/org/pentaho/di/trans/steps/avroinput/AvroInputMetaTest.java class AvroInputMetaTest (line 55) | public class AvroInputMetaTest { method before (line 58) | @BeforeClass method setup (line 64) | @Before method testLoadSave (line 69) | @Test method testGetStepData (line 144) | @Test method testGetStep (line 149) | @Test method testIndexedValsList (line 160) | @Test method testSetDefault (line 170) | @Test method testGetDialogClassName (line 176) | @Test method testSupportsErrorHandling (line 181) | @Test method testGetFieldsMFields (line 186) | @Test FILE: legacy/src/test/java/org/pentaho/di/trans/steps/avroinput/AvroInputTest.java class AvroInputTest (line 56) | public class AvroInputTest { method testGetLeafFieldsFromSchema (line 147) | @Test method testGetSimpleTopLevelRecordFieldsInteger (line 157) | @Test method testGetSimpleTopLevelRecordFieldsString (line 191) | @Test method testTopLevelRecordWithFixedType (line 224) | @Test method testSchemaWithTopLevelUnionAndNamedType (line 258) | @Test method testDecodeUsingSchemaInIncomingField (line 293) | @Test method testDecodeUsingSchemaInIncomingFieldIncompatibleSchema (line 364) | @Test method testDecodeUsingSchemaInIncomingFieldCacheSchemas (line 435) | @Test method testDecodeUsingSchemaInIncomingFieldTwoDifferentSchemas (line 511) | @Test method testDecodeUsingSchemaInIncomingFieldTwoDifferentSchemasDoComplainAboutMissingField (line 593) | @Test( expected = AvroRuntimeException.class ) method testDecodeUsingSchemaInIncomingFieldFallbackToDefaultSchema (line 695) | @Test method testConvertToKettleRowManyFields (line 773) | @Test method testGetNonExistentFieldFromTopLevelRecord (line 847) | @Test method testGetTopLevelRecordArrayElement (line 877) | @Test method testGetTopLevelRecordPositiveIndexOutOfBoundsArrayElement (line 911) | @Test method testGetTopLevelMapSimpleRecordField (line 943) | @Test method testGetTopLevelMapArrayElementFromRecord (line 975) | @Test method testGetNonExistentTopLevelMapEntry (line 1004) | @Test method testUnionHandling (line 1031) | @Test method testMultiTypeUnionHandling (line 1068) | @Test method testMapExpansion (line 1105) | @Test method testLookupFieldInitializationNoRowMetaAvailable (line 1149) | @Test method main (line 1160) | public static void main( String[] args ) { FILE: legacy/src/test/java/org/pentaho/di/trans/steps/couchdbinput/CouchDbInputMetaTest.java class CouchDbInputMetaTest (line 53) | public class CouchDbInputMetaTest { method beforeClass (line 56) | @BeforeClass method setup (line 63) | @Before method testLoadSave (line 68) | @Test method testClone (line 85) | @Test method testSetDefault (line 92) | @Test method testGetFields (line 105) | @Test method testLoadXmlException (line 119) | @Test( expected = KettleXMLException.class ) method testReadRepException (line 126) | @Test( expected = KettleException.class ) method testSaveRepException (line 134) | @Test( expected = KettleException.class ) method testGetStep (line 145) | @Test method testGetStepData (line 157) | @Test FILE: legacy/src/test/java/org/pentaho/di/trans/steps/couchdbinput/CouchDbInputTest.java class CouchDbInputTest (line 49) | public class CouchDbInputTest { method setup (line 56) | @Before method testInitException (line 72) | @Test method testInit (line 101) | @Test method testInitNoDesignDoc (line 142) | @Test method testInitNoView (line 175) | @Test method testInit199 (line 208) | @Test method testInit300 (line 247) | @Test FILE: legacy/src/test/java/org/pentaho/di/ui/core/namedcluster/NamedClusterUIHelperTest.java class NamedClusterUIHelperTest (line 24) | public class NamedClusterUIHelperTest { method testNamedClusterFactoryHolder (line 25) | @Test(timeout = 10000) FILE: legacy/src/test/java/org/pentaho/di/ui/vfs/VfsFileChooserHelperTest.java class VfsFileChooserHelperTest (line 31) | public class VfsFileChooserHelperTest { method testSetSchemeRestriction (line 44) | @Test method testGetSchemeRestrictionReturnsNull_ForDefaultEmptyRestriction (line 52) | @Test method testGetSchemeRestrictionReturnsRestriction_ForNotEmptyRestriction (line 60) | @Test method testConstructorWithParams (line 69) | @Test method testConstructorWithParamsWithoutFileSystemOptions (line 83) | @Test method testSetSchemeRestrictions_ForArrayOfRestrictionStrings (line 97) | @Test method testSetDefaultScheme (line 105) | @Test method testSetShowFileScheme (line 113) | @Test method testSetVariableSpace (line 121) | @Test method testSetFileSystemOptions (line 130) | @Test method testReturnsUserAuthenticatedFileObjects (line 139) | @Test FILE: legacy/src/test/java/org/pentaho/hadoop/PluginPropertiesUtilTest.java class PluginPropertiesUtilTest (line 20) | public class PluginPropertiesUtilTest { method getVersion (line 22) | @Test method testGetVersionFromNonDefaultLocation (line 31) | @Test method testGetVersionFromNonExistingLocation (line 38) | @Test FILE: legacy/src/test/java/org/pentaho/hadoop/PropertiesConfigurationPropertiesTest.java class PropertiesConfigurationPropertiesTest (line 51) | public class PropertiesConfigurationPropertiesTest { method setup (line 55) | @Before method testGetProperty (line 61) | @Test method testGetPropertyDefault (line 69) | @Test method testGetString (line 78) | @Test method testGetObject (line 86) | @Test method testGetNull (line 92) | @Test method testSetProperty (line 99) | @Test method testSetPropertyNullKey (line 109) | @Test( expected = IllegalArgumentException.class ) method stringPropertyNames (line 114) | @Test method testKeySet (line 121) | @Test method testEntrySet (line 128) | @Test method testSize (line 137) | @Test method testIsEmptyTrue (line 144) | @Test method testIsEmptyFalse (line 151) | @Test method testKeys (line 158) | @Test method testElements (line 165) | @Test method testContainsTrue (line 175) | @Test method testContainsFalse (line 186) | @Test method testPropertyNames (line 195) | @Test method testValues (line 206) | @Test method testContainsKey (line 216) | @Test method testRemove (line 227) | @Test method testRemoveObject (line 236) | @Test method testPutAll (line 242) | @Test method testClear (line 253) | @Test method testLoadReader (line 259) | @Test( expected = UnsupportedOperationException.class ) method testLoadInputStream (line 264) | @Test( expected = UnsupportedOperationException.class ) method testSaveOutputStream (line 269) | @Test( expected = UnsupportedOperationException.class ) method testStoreWriter (line 274) | @Test( expected = UnsupportedOperationException.class ) method testStoreOutputStream (line 279) | @Test( expected = UnsupportedOperationException.class ) method testStoreToXmlNoEncoding (line 284) | @Test( expected = UnsupportedOperationException.class ) method testStoreToXmlEncoding (line 289) | @Test( expected = UnsupportedOperationException.class ) method testListPrintStream (line 294) | @Test( expected = UnsupportedOperationException.class ) method testListPrintWriter (line 299) | @Test( expected = UnsupportedOperationException.class ) method testHash (line 304) | @Test( expected = UnsupportedOperationException.class ) method testClone (line 309) | @Test( expected = UnsupportedOperationException.class ) method mockKeys (line 314) | private void mockKeys( final Set keys ) { method mockToMap (line 327) | private void mockToMap( final Map map ) { FILE: legacy/src/test/java/org/pentaho/util/FileUtil.java class FileUtil (line 23) | public class FileUtil { method deleteDir (line 25) | public static synchronized boolean deleteDir( File dir ) { FILE: legacy/src/test/java/org/pentaho/weblogs/WebLogs.java class WebLogs (line 46) | public class WebLogs extends Configured implements Tool { method printUsage (line 51) | static int printUsage() { method run (line 63) | public int run( String[] args ) throws Exception { method main (line 138) | public static void main( String[] args ) throws Exception { FILE: services-bootstrap/src/main/java/org/pentaho/big/data/api/services/impl/BigDataServicesProxyImpl.java class BigDataServicesProxyImpl (line 29) | @ServiceProvider( method isSingleton (line 40) | @Override method getNamedClusterServiceLocator (line 46) | @Override method getHadoopFileSystemLocator (line 58) | @Override method getShimIdentifier (line 66) | @Override method getNamedClusterService (line 79) | @Override FILE: services-bootstrap/src/main/java/org/pentaho/big/data/hadoop/bootstrap/HadoopConfigurationBootstrap.java class HadoopConfigurationBootstrap (line 65) | @KettleLifecyclePlugin( id = "HadoopConfigurationBootstrap", name = "Had... method getHadoopConfigurationProvider (line 97) | public static HadoopConfigurationProvider getHadoopConfigurationProvid... method getInstance (line 101) | public static HadoopConfigurationBootstrap getInstance() { method setInstance (line 105) | protected static void setInstance( HadoopConfigurationBootstrap instan... method getProvider (line 109) | public HadoopConfigurationProvider getProvider() throws ConfigurationE... method setPrompter (line 114) | public void setPrompter( HadoopConfigurationPrompter prompter ) { method initProvider (line 118) | protected synchronized void initProvider() throws ConfigurationExcepti... method initializeHadoopConfigurationProvider (line 183) | protected HadoopConfigurationProvider initializeHadoopConfigurationPro... method getHadoopConfigurationInfos (line 209) | public synchronized List getHadoopConfigurati... method getPluginProperties (line 239) | public Properties getPluginProperties() throws ConfigurationException { method getPluginInterface (line 254) | protected PluginInterface getPluginInterface() throws KettleException { method locatePluginDirectory (line 273) | public FileObject locatePluginDirectory() throws ConfigurationException { method resolveHadoopConfigurationsDirectory (line 299) | public FileObject resolveHadoopConfigurationsDirectory() throws Config... method getActiveConfigurationId (line 305) | @Override method setActiveShim (line 313) | public synchronized void setActiveShim( String shimId ) throws Configu... method getWillBeActiveConfigurationId (line 320) | public String getWillBeActiveConfigurationId() throws ConfigurationExc... method onEnvironmentInit (line 335) | @Override method onEnvironmentShutdown (line 353) | @Override method registerHadoopConfigurationListener (line 358) | public synchronized void registerHadoopConfigurationListener( method unregisterHadoopConfigurationListener (line 366) | public void unregisterHadoopConfigurationListener( HadoopConfiguration... method notifyDependencyLoaded (line 370) | public void notifyDependencyLoaded() { method getMergedPmrAndPluginProperties (line 374) | protected Properties getMergedPmrAndPluginProperties() { method getRemainingDependencies (line 387) | protected CountDownLatch getRemainingDependencies() { method getPmrProperties (line 391) | private Properties getPmrProperties() { FILE: services-bootstrap/src/main/java/org/pentaho/big/data/hadoop/bootstrap/HadoopConfigurationListener.java type HadoopConfigurationListener (line 30) | public interface HadoopConfigurationListener { method onClassLoaderAvailable (line 31) | void onClassLoaderAvailable( ClassLoader classLoader ); method onConfigurationOpen (line 33) | void onConfigurationOpen( HadoopConfiguration hadoopConfiguration, boo... method onConfigurationClose (line 35) | void onConfigurationClose( HadoopConfiguration hadoopConfiguration ); FILE: services-bootstrap/src/main/java/org/pentaho/big/data/services/bootstrap/BigDataCEServiceInitializerImpl.java class BigDataCEServiceInitializerImpl (line 90) | @ServiceProvider(id = "BigDataCEServiceInitializer", description = "", p... method doInitialize (line 97) | @Override method registerLoggers (line 148) | protected void registerLoggers() { method getPriority (line 213) | @Override method useProxyWrap (line 218) | @Override method initializeCommonServices (line 228) | protected HadoopShim initializeCommonServices() throws ConfigurationEx... method initializeAuthenticationManager (line 255) | protected AuthenticationMappingManager initializeAuthenticationManager... method initializeHdfsServices (line 270) | protected HadoopFileSystemLocatorImpl initializeHdfsServices( HadoopSh... method initializeHdfsSchemas (line 303) | protected void initializeHdfsSchemas( HadoopFileSystemLocatorImpl hado... method initializeFormatServices (line 380) | protected void initializeFormatServices( HadoopShim hadoopShim, method initializeMapReduceServices (line 404) | protected void initializeMapReduceServices( HadoopShim hadoopShim, method initializeSqoopServices (line 438) | protected void initializeSqoopServices( HadoopShim hadoopShim, method initializeHiveServices (line 466) | protected void initializeHiveServices( HadoopShim hadoopShim, method registerBigDataDatabaseDialects (line 493) | protected void registerBigDataDatabaseDialects() throws KettlePluginEx... method registerHiveDrivers (line 548) | protected void registerHiveDrivers( HadoopShim hadoopShim, method initializeHBaseServices (line 598) | protected void initializeHBaseServices( HadoopShim hadoopShim, method initializeYarnServices (line 629) | protected void initializeYarnServices( HadoopShim hadoopShim, method initializeUINamedClusterProvider (line 643) | protected void initializeUINamedClusterProvider() { method initializeRuntimeTests (line 662) | protected void initializeRuntimeTests( HadoopFileSystemLocatorImpl had... FILE: services-bootstrap/src/main/java/org/pentaho/big/data/services/bootstrap/BigDataLogConfig.java class BigDataLogConfig (line 25) | public class BigDataLogConfig { method initializeBigDataLogging (line 36) | public static synchronized void initializeBigDataLogging() { method getBigDataLogger (line 64) | public static Logger getBigDataLogger( Class clazz ) { method getBigDataLogger (line 78) | public static Logger getBigDataLogger( String name ) { method isInitialized (line 91) | public static boolean isInitialized() { method resetInitialization (line 98) | protected static void resetInitialization() { method registerLogger (line 110) | public static boolean registerLogger( String loggerName, org.apache.lo... FILE: services-bootstrap/src/main/java/org/pentaho/big/data/services/bootstrap/BigDataPluginLifecycleListener.java class BigDataPluginLifecycleListener (line 25) | @KettleLifecyclePlugin( id = "BigDataPlugin", name = "Big Data Plugin" ) method onEnvironmentInit (line 33) | @Override method onEnvironmentShutdown (line 45) | @Override FILE: services-bootstrap/src/test/java/org/pentaho/big/data/services/bootstrap/BigDataCEServiceInitializerImplTest.java class BigDataCEServiceInitializerImplTest (line 44) | @RunWith(MockitoJUnitRunner.class) method setUp (line 76) | @Before method tearDown (line 103) | @After method testGetPriority (line 119) | @Test method testUseProxyWrap (line 124) | @Test method testInitializeCommonServices_Success (line 129) | @Test method testInitializeCommonServices_NoProvider (line 140) | @Test method testInitializeAuthenticationManager (line 150) | @Test method testInitializeHdfsServices_WithHdfsService (line 158) | @Test method testInitializeHdfsServices_WithoutHdfsService (line 174) | @Test method testInitializeFormatServices_WithCommonFormats (line 183) | @Test method testInitializeFormatServices_WithoutCommonFormats (line 194) | @Test method testInitializeMapReduceServices_WithMapReduce (line 202) | @Test method testInitializeMapReduceServices_WithoutMapReduce (line 215) | @Test method testInitializeSqoopServices_WithSqoop (line 223) | @Test method testInitializeSqoopServices_WithoutSqoop (line 236) | @Test method testInitializeHiveServices_WithHive (line 244) | @Test method testInitializeHiveServices_WithoutHive (line 259) | @Test method testInitializeHBaseServices_WithHBase (line 270) | @Test method testInitializeHBaseServices_WithoutHBase (line 283) | @Test method testInitializeYarnServices (line 291) | @Test method testInitializeRuntimeTests (line 299) | @Test method testDoInitialize_WithNoConfiguration (line 305) | @Test method testDoInitialize_WithConfiguration (line 313) | @Test method testDoInitialize_WithFullServices (line 325) | @Test method testRegisterHiveDrivers_AllDriverTypes (line 350) | @Test method testRegisterHiveDrivers_OnlyHive (line 360) | @Test method testRegisterHiveDrivers_NoDrivers (line 370) | @Test method testInitializeUINamedClusterProvider (line 380) | @Test method testRegisterLoggers_WithValidPropertiesFile (line 386) | @Test method testRegisterLoggers_CallsWithoutException (line 400) | @Test FILE: services-bootstrap/src/test/java/org/pentaho/big/data/services/bootstrap/BigDataLogConfigTest.java class BigDataLogConfigTest (line 30) | public class BigDataLogConfigTest { method setUp (line 32) | @Before method tearDown (line 38) | @After method testInitializeBigDataLogging_FirstTime (line 44) | @Test method testInitializeBigDataLogging_MultipleCalls (line 53) | @Test method testGetBigDataLogger_WithClass (line 63) | @Test method testGetBigDataLogger_WithString (line 74) | @Test method testGetBigDataLogger_EnsuresInitialization (line 84) | @Test method testIsInitialized_InitialState (line 93) | @Test method testIsInitialized_AfterInitialization (line 98) | @Test method testResetInitialization (line 104) | @Test method testRegisterLogger_NewLogger (line 113) | @Test method testRegisterLogger_ExistingLogger (line 132) | @Test method testRegisterLogger_MultipleLoggers (line 155) | @Test method testRegisterLogger_DifferentLevels (line 182) | @Test method testRegisterLogger_NullLoggerName (line 204) | @Test method testRegisterLogger_EmptyLoggerName (line 216) | @Test method testRegisterLogger_RootLogger (line 232) | @Test method testRegisterLogger_HierarchicalLoggers (line 248) | @Test method testRegisterLogger_ThreadSafety (line 271) | @Test