Class DomainProcessInfoDAO
- java.lang.Object
-
- org.tkit.rhpam.quarkus.domain.daos.DomainProcessInfoDAO
-
@ApplicationScoped public class DomainProcessInfoDAO extends Object
The type Domain process info dao.
-
-
Constructor Summary
Constructors Constructor Description DomainProcessInfoDAO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DomainProcessInfoaddStageFlag(String domainRefKey, String domainRefId, String flagName, Date date, String info)Add stage flag domain process info.DomainProcessInfofindByDomainRefs(String domainRefKey, String domainRefId)Find by domain refs domain process info.DomainProcessInfoselectForUpdate(String domainRefKey, String domainRefId)Select for update domain process info.DomainProcessInfoupdate(DomainProcessInfo toUpdate)Update domain process info.
-
-
-
Method Detail
-
findByDomainRefs
public DomainProcessInfo findByDomainRefs(String domainRefKey, String domainRefId)
Find by domain refs domain process info.- Parameters:
domainRefKey- the domain ref keydomainRefId- the domain ref id- Returns:
- the domain process info
-
selectForUpdate
public DomainProcessInfo selectForUpdate(String domainRefKey, String domainRefId)
Select for update domain process info.- Parameters:
domainRefKey- the domain ref keydomainRefId- the domain ref id- Returns:
- the domain process info
-
update
public DomainProcessInfo update(DomainProcessInfo toUpdate)
Update domain process info.- Parameters:
toUpdate- the to update- Returns:
- the domain process info
-
addStageFlag
public DomainProcessInfo addStageFlag(String domainRefKey, String domainRefId, String flagName, Date date, String info)
Add stage flag domain process info.- Parameters:
domainRefKey- the domain ref keydomainRefId- the domain ref idflagName- the flag namedate- the dateinfo- the info- Returns:
- the domain process info
-
-