Code Search for Developers
 
 
  

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

crlove

Online psychological-test-based friend-making system.

Project homepage: http://sourceforge.net/projects/crlove
Programming language(s): Java,JavaScript,Ruby,XML
License: other

  ArchiveServiceImpl.java
  ArticleServiceImpl.java
  CategoryServiceImpl.java
  CommentServiceImpl.java
  TrackbackServiceImpl.java
  WeblogServiceImpl.java