21 lines
568 B
Java
21 lines
568 B
Java
|
package de.hsadmin.mods.email;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import de.hsadmin.core.model.AbstractModuleImpl;
|
||
|
import de.hsadmin.core.model.AbstractEntity;
|
||
|
import de.hsadmin.core.model.HSAdminException;
|
||
|
|
||
|
public class EMailAliasModuleImpl extends AbstractModuleImpl {
|
||
|
|
||
|
@Override
|
||
|
public List<AbstractEntity> search(Class<? extends AbstractEntity> entityClass,
|
||
|
String condition, String orderBy) throws HSAdminException {
|
||
|
if (orderBy == null || orderBy.length() == 0) {
|
||
|
orderBy = "ORDER BY name ASC";
|
||
|
}
|
||
|
return super.search(entityClass, condition, orderBy);
|
||
|
}
|
||
|
|
||
|
}
|