use of alma.ACS.CBlongSeq in project ACS by ACS-Community.
the class RequesterUtil method giveCBLongSequence.
/**
*
* @param cs
* @param x
* @return
* @throws AcsJContainerServicesEx
*/
public static CBlongSeq giveCBLongSequence(ContainerServicesBase cs, ResponseReceiver<Integer[]> x) throws AcsJContainerServicesEx {
CBlongSeq ret;
Objects.CBlongSeqImpl cb = new Objects.CBlongSeqImpl(x);
OffShoot offshoot = cs.activateOffShoot(cb);
ret = CBlongSeqHelper.narrow(offshoot);
return ret;
}