org.broadleafcommerce.common.config.service
Interface SystemPropertiesService

All Known Implementing Classes:
SystemPropertiesServiceImpl

public interface SystemPropertiesService

To change this template use File | Settings | File Templates.

User: Kelly Tisdell Date: 6/25/12


Method Summary
 SystemProperty createNewSystemProperty()
          This method should not persist anything to the database.
 void deleteSystemProperty(SystemProperty systemProperty)
           
 List<SystemProperty> findAllSystemProperties()
           
 SystemProperty findSystemPropertyByName(String name)
           
 SystemProperty saveSystemProperty(SystemProperty systemProperty)
           
 

Method Detail

saveSystemProperty

SystemProperty saveSystemProperty(SystemProperty systemProperty)

deleteSystemProperty

void deleteSystemProperty(SystemProperty systemProperty)

findAllSystemProperties

List<SystemProperty> findAllSystemProperties()

findSystemPropertyByName

SystemProperty findSystemPropertyByName(String name)

createNewSystemProperty

SystemProperty createNewSystemProperty()
This method should not persist anything to the database. It should simply return the correct implementation of the SystemProperty interface.

Returns:


Copyright © 2012. All Rights Reserved.