buildframework/helium/sf/java/metadata/src/com/nokia/helium/metadata/CustomMetaDataProvider.java
changeset 628 7c4a911dc066
parent 588 c7c26511138f
child 629 541af5ee3ed9
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
     1 /*
       
     2  * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:
       
    15  *
       
    16  */
       
    17 package com.nokia.helium.metadata;
       
    18 
       
    19 import com.nokia.helium.metadata.db.ORMMetadataDB;
       
    20 
       
    21 /**
       
    22  * This interface is meant for a MetadataInput
       
    23  * to provides custom information other than
       
    24  * LogEntry to the database.
       
    25  */
       
    26 public interface CustomMetaDataProvider {
       
    27 
       
    28     /**
       
    29      * This method is the entry point which allows
       
    30      * to push additional metadata via the ORMMetadataDB
       
    31      * instance. 
       
    32      */
       
    33     void provide(ORMMetadataDB db, String logPath);
       
    34     
       
    35 }