org.kuali.rice.core.impl.style
Interface StyleDao

All Known Implementing Classes:
StyleDaoOjb

public interface StyleDao

Defines data access operations related to StyleBo.

Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
StyleBo

Method Summary
 List<String> getAllStyleNames()
          Return a list of the names of all styles that exist in the data store.
 org.kuali.rice.core.impl.style.StyleBo getStyle(String styleName)
          Returns the style with the given name from the data store.
 void saveStyle(org.kuali.rice.core.impl.style.StyleBo style)
          Updates or creates the given style in the data store.
 

Method Detail

saveStyle

void saveStyle(org.kuali.rice.core.impl.style.StyleBo style)
Updates or creates the given style in the data store.

Parameters:
style - the style to save, if null then this method will do nothing

getStyle

org.kuali.rice.core.impl.style.StyleBo getStyle(String styleName)
Returns the style with the given name from the data store.

Parameters:
styleName - the name of the style to retrieve
Returns:
the style with the given name, or null if it does not exist

getAllStyleNames

List<String> getAllStyleNames()
Return a list of the names of all styles that exist in the data store. This method ...

Returns:


Copyright © 2005-2011 The Kuali Foundation. All Rights Reserved.