Subversion Repositories bacoAlunos

Rev

Rev 1775 | Rev 1791 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1775 Rev 1781
Line 1... Line 1...
1
package pt.estgp.estgweb.domain.dao;
1
package pt.estgp.estgweb.domain.dao;
2
 
2
 
-
 
3
import pt.estgp.estgweb.domain.BpmnFlowComponentTask;
3
import pt.estgp.estgweb.domain.dao.impl.*;
4
import pt.estgp.estgweb.domain.dao.impl.*;
4
 
5
 
-
 
6
import java.rmi.MarshalledObject;
-
 
7
 
5
/**
8
/**
6
 * @author Jorge Machado
9
 * @author Jorge Machado
7
 * @date 28/Fev/2008
10
 * @date 28/Fev/2008
8
 * @time 2:50:38
11
 * @time 2:50:38
9
 * @see pt.estgp.estgweb.domain
12
 * @see pt.estgp.estgweb.domain
Line 12... Line 15...
12
{
15
{
13
 
16
 
14
    private static CourseDepartmentDaoImpl courseDepartmentDaoImpl;
17
    private static CourseDepartmentDaoImpl courseDepartmentDaoImpl;
15
    private static EventClassDaoImpl eventClassDaoImpl;
18
    private static EventClassDaoImpl eventClassDaoImpl;
16
    private static EventFormacoesDaoImpl eventFormacoesDaoImpl;
19
    private static EventFormacoesDaoImpl eventFormacoesDaoImpl;
-
 
20
    private static BpmnFlowComponentTaskActorDao bpmnFlowComponentTaskActor;
17
 
21
 
18
    public static JobDaoImpl getJobDaoImpl()
22
    public static JobDaoImpl getJobDaoImpl()
19
    {
23
    {
20
        return JobDaoImpl.getInstance();
24
        return JobDaoImpl.getInstance();
21
    }
25
    }
Line 586... Line 590...
586
    }
590
    }
587
    public static BpmnProcessInstanceDaoImpl getBpmnProcessInstanceDaoImpl()
591
    public static BpmnProcessInstanceDaoImpl getBpmnProcessInstanceDaoImpl()
588
    {
592
    {
589
        return BpmnProcessInstanceDaoImpl.getInstance();
593
        return BpmnProcessInstanceDaoImpl.getInstance();
590
    }
594
    }
-
 
595
 
-
 
596
    public static BpmnFlowComponentTaskActorDao getBpmnFlowComponentTaskActorDaoImpl()
-
 
597
    {
-
 
598
        return BpmnFlowComponentTaskActorDao.getInstance();
-
 
599
    }
-
 
600
 
-
 
601
    public static BpmnFlowComponentTaskDao getBpmnFlowComponentTaskDaoImpl()
-
 
602
    {
-
 
603
        return BpmnFlowComponentTaskDao.getInstance();
-
 
604
    }
-
 
605
 
-
 
606
    public static BpmnFlowConnectorDao getBpmnFlowConnectorDaoImpl() {
-
 
607
        return BpmnFlowConnectorDao.getInstance();
-
 
608
    }
591
}
609
}