mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
14 lines
296 B
Java
14 lines
296 B
Java
/**
|
|
* Copyright (C) 2011 Cloud.com, Inc. All rights reserved.
|
|
*/
|
|
|
|
package com.cloud.secstorage;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.cloud.utils.db.GenericDao;
|
|
|
|
public interface CommandExecLogDao extends GenericDao<CommandExecLogVO, Long> {
|
|
public void expungeExpiredRecords(Date cutTime);
|
|
}
|