com.mycompany.service
Interface ContentService

All Known Implementing Classes:
ContentServiceImpl

public interface ContentService

Interface for a content service.

Author:
Ian Hlavats (ian@tarantulaconsulting.com)

Method Summary
 Content findContentByName(java.lang.String name)
          Finds a Content object by name.
 Content saveContent(Content content)
          Saves a Content object.
 

Method Detail

findContentByName

Content findContentByName(java.lang.String name)
Finds a Content object by name.

Parameters:
name - The name to find.
Returns:
A Content object.

saveContent

Content saveContent(Content content)
Saves a Content object.

Parameters:
content - The object to save.
Returns:
The saved object.