Java 类ims.clinical.vo.domain.SECSVoAssembler 实例源码

项目:AvoinApotti    文件:SECSConfigImpl.java   
/**
 * There will only be one secs record
 */
public SECSVo getSecs()             //wdev-13392
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs); //wdev-13392
    if(secsVoColl != null && secsVoColl.size() > 0)
        return secsVoColl.get(0);
    return null;
}
项目:AvoinApotti    文件:SECSConfigImpl.java   
public SECSVo saveSECS(SECSVo voSecs) throws StaleObjectException,UniqueKeyViolationException
{
    if(voSecs == null)
        throw new CodingRuntimeException("voSecs parameter is null in method saveSECS");
    if(!voSecs.isValidated())
        throw new CodingRuntimeException("voSecs has not been validated");


    DomainFactory factory = getDomainFactory();
    //wdev-13392
    if(voSecs.getID_SECS() == null)
    {

        SECSVoCollection list = getSecsConfiguration();
        if(list != null && list.size() > 0)
        {
            throw new UniqueKeyViolationException("A SECS Configuration already exists.");

        }

    }
    //---------------

    SECS doSecs = SECSVoAssembler.extractSECS(factory, voSecs);
    factory.save(doSecs);

    return SECSVoAssembler.create(doSecs);
}
项目:openMAXIMS    文件:VitalSignsObservationProtocolImpl.java   
public SECSVo getSecs()             //wdev-13392
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs); //wdev-13392
    if(secsVoColl != null && secsVoColl.size() > 0)
        return secsVoColl.get(0);
    return null;
}
项目:openMAXIMS    文件:VitalSignsObservationProtocolImpl.java   
public SECSVo saveSECS(SECSVo voSecs) throws StaleObjectException,UniqueKeyViolationException
{
    if(voSecs == null)
        throw new CodingRuntimeException("voSecs parameter is null in method saveSECS");
    if(!voSecs.isValidated())
        throw new CodingRuntimeException("voSecs has not been validated");


    DomainFactory factory = getDomainFactory();
    //wdev-13392
    if(voSecs.getID_SECS() == null)
    {

        SECSVoCollection list = getSecsConfiguration();
        if(list != null && list.size() > 0)
        {
            throw new UniqueKeyViolationException("A SECS Configuration already exists.");

        }

    }
    //---------------

    SECS doSecs = SECSVoAssembler.extractSECS(factory, voSecs);
    factory.save(doSecs);

    return SECSVoAssembler.create(doSecs);
}
项目:openMAXIMS    文件:SECSConfigImpl.java   
/**
 * There will only be one secs record
 */
public SECSVo getSecs()             //wdev-13392
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs); //wdev-13392
    if(secsVoColl != null && secsVoColl.size() > 0)
        return secsVoColl.get(0);
    return null;
}
项目:openMAXIMS    文件:SECSConfigImpl.java   
public SECSVo saveSECS(SECSVo voSecs) throws StaleObjectException,UniqueKeyViolationException
{
    if(voSecs == null)
        throw new CodingRuntimeException("voSecs parameter is null in method saveSECS");
    if(!voSecs.isValidated())
        throw new CodingRuntimeException("voSecs has not been validated");


    DomainFactory factory = getDomainFactory();
    //wdev-13392
    if(voSecs.getID_SECS() == null)
    {

        SECSVoCollection list = getSecsConfiguration();
        if(list != null && list.size() > 0)
        {
            throw new UniqueKeyViolationException("A SECS Configuration already exists.");

        }

    }
    //---------------

    SECS doSecs = SECSVoAssembler.extractSECS(factory, voSecs);
    factory.save(doSecs);

    return SECSVoAssembler.create(doSecs);
}
项目:openmaxims-linux    文件:SECSConfigImpl.java   
/**
 * There will only be one secs record
 */
public SECSVo getSecs()             //wdev-13392
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs); //wdev-13392
    if(secsVoColl != null && secsVoColl.size() > 0)
        return secsVoColl.get(0);
    return null;
}
项目:openmaxims-linux    文件:SECSConfigImpl.java   
public SECSVo saveSECS(SECSVo voSecs) throws StaleObjectException,UniqueKeyViolationException
{
    if(voSecs == null)
        throw new CodingRuntimeException("voSecs parameter is null in method saveSECS");
    if(!voSecs.isValidated())
        throw new CodingRuntimeException("voSecs has not been validated");


    DomainFactory factory = getDomainFactory();
    //wdev-13392
    if(voSecs.getID_SECS() == null)
    {

        SECSVoCollection list = getSecsConfiguration();
        if(list != null && list.size() > 0)
        {
            throw new UniqueKeyViolationException("A SECS Configuration already exists.");

        }

    }
    //---------------

    SECS doSecs = SECSVoAssembler.extractSECS(factory, voSecs);
    factory.save(doSecs);

    return SECSVoAssembler.create(doSecs);
}
项目:AvoinApotti    文件:SECSConfigImpl.java   
public SECSVoCollection getSecsColection() 
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs);
    return secsVoColl;
}
项目:openMAXIMS    文件:VitalSignsObservationProtocolImpl.java   
public SECSVoCollection getSecsColection() 
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs);
    return secsVoColl;
}
项目:openMAXIMS    文件:SECSConfigImpl.java   
public SECSVoCollection getSecsColection() 
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs);
    return secsVoColl;
}
项目:openmaxims-linux    文件:SECSConfigImpl.java   
public SECSVoCollection getSecsColection() 
{
    List secs = getDomainFactory().find("from SECS as s1_1 order by s1_1.systemInformation.creationDateTime desc ");
    SECSVoCollection secsVoColl = SECSVoAssembler.createSECSVoCollectionFromSECS(secs);
    return secsVoColl;
}
项目:AvoinApotti    文件:SECSConfigImpl.java   
private SECSVoCollection getSecsConfiguration()
{

    DomainFactory factory = getDomainFactory();
    String hql; 


    hql = " from SECS ";

    SECSVoCollection collSystemReview = SECSVoAssembler.createSECSVoCollectionFromSECS(factory.find(hql));

    return collSystemReview;


}
项目:openMAXIMS    文件:VitalSignsObservationProtocolImpl.java   
private SECSVoCollection getSecsConfiguration()
{

    DomainFactory factory = getDomainFactory();
    String hql; 


    hql = " from SECS ";

    SECSVoCollection collSystemReview = SECSVoAssembler.createSECSVoCollectionFromSECS(factory.find(hql));

    return collSystemReview;


}
项目:openMAXIMS    文件:SECSConfigImpl.java   
private SECSVoCollection getSecsConfiguration()
{

    DomainFactory factory = getDomainFactory();
    String hql; 


    hql = " from SECS ";

    SECSVoCollection collSystemReview = SECSVoAssembler.createSECSVoCollectionFromSECS(factory.find(hql));

    return collSystemReview;


}
项目:openmaxims-linux    文件:SECSConfigImpl.java   
private SECSVoCollection getSecsConfiguration()
{

    DomainFactory factory = getDomainFactory();
    String hql; 


    hql = " from SECS ";

    SECSVoCollection collSystemReview = SECSVoAssembler.createSECSVoCollectionFromSECS(factory.find(hql));

    return collSystemReview;


}