ArchiveServiceImpl.java from crlove at Krugle
Show ArchiveServiceImpl.java syntax highlighted
package com.witfriend.arthemis.service.impl;
import org.springframework.transaction.annotation.Transactional;
import com.witfriend.arthemis.domain.Archive;
import com.witfriend.arthemis.domain.Archives;
import com.witfriend.arthemis.domain.exception.weblog.WeblogNotFoundException;
import com.witfriend.arthemis.service.ArchiveService;
/**
* DOCUMENT ME!
* @author wangyz
* @since 2006.10.05
* @version $Id$
*/
@Transactional(readOnly = true)
public class ArchiveServiceImpl implements ArchiveService {
public Archive browse(Archive archive) throws WeblogNotFoundException {
return Archives.browse(archive);
}
}
See more files for this project here