FileSha256SumDO

/** * @brief DO class: A file's sha256 value. */ 

Primary key: file_hash_id: int

schema FileSha256SumDO { @primary file_hash_id: int, value: string } 

FileSha256SumDO::getValue

/** * @brief gets the value of this element. * @return string */ 
pub fn getValue(self: FileSha256SumDO) -> string; 

FileSha256SumDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *FileSha256SumDO;