* @throws NPandayRepositoryException if there is a problem loading the repository
*/
public void load( InputStream inputStream, Hashtable properties )
throws NPandayRepositoryException
{
AssemblyPluginXpp3Reader xpp3Reader = new AssemblyPluginXpp3Reader();
Reader reader = new InputStreamReader( inputStream );
AssemblyPluginsModel plugins = null;
try
{
plugins = xpp3Reader.read( reader );
}
catch( IOException e )
{
throw new NPandayRepositoryException( "NPANDAY-021-000: An error occurred while reading executable-plugins.xml", e );
}