~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-datamart-default/src/main/java/org/hisp/dhis/datamart/calculateddataelement/CalculatedDataElementDataMart.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.datamart.calculateddataelement;
 
2
 
 
3
import java.util.Collection;
 
4
 
 
5
import org.hisp.dhis.dataelement.Operand;
 
6
 
 
7
public interface CalculatedDataElementDataMart
 
8
{
 
9
    int exportCalculatedDataElements( Collection<Integer> calculatedDataElementIds, 
 
10
        Collection<Integer> periodIds, Collection<Integer> organisationUnitIds, Collection<Operand> operands );
 
11
}