How-to: Create the core component with a custom credential provider

Use the com.alpha.pineapple.CoreFactory to create an instance of the core component with a custom credential provider.

First, create the core factory:

  1. // create core factory
  2. CoreFactory coreFactory = new CoreFactory();

Then create the credential provider using the core factory:

  1. // define default pineapple home directory
  2. File homeDirectory = new File( "c:\pineapple-home" );
  3. // define conf directory
  4. File confDirectory = new File( homeDirectory, "conf" );
  5. // initialize credential file
  6. File credentialsFile = new File( confDirectory, "credentials.xml" );
  7.  
  8. // create credential provider
  9. CredentialProvider provider = coreFactory.createCredentialProvider(credentialsFile);

Finally, create the core component is created using the core factory:

  1. // create core component
  2. PineappleCore core = coreFactory.createCore( provider );

How the core component will the load environment configuration

The location where the environment configuration is loaded from is determined by resolution of the runtime directories used by the core component.

With the the system property pineapple.home.dir defined

The core component will:

  • load resources from ${pineapple.home.dir}/conf/resources.xml.
  • load credentials from c:/pineapple-home/conf/credentials.xml.

Without the the system property pineapple.home.dir defined

The core component will:

  • load resources from ${user.home}/.pineapple/conf/resources.xml.
  • load credentials from c:/pineapple-home/conf/credentials.xml.

Please notice: The location where the credentials is loaded from can be customized by the credentialsFile argument to the CoreFactory.createCredentialProvider(credentialsFile) factory method.