org.broadleafcommerce.common.config.domain
Interface SystemProperty

All Superinterfaces:
Serializable
All Known Implementing Classes:
SystemPropertyImpl

public interface SystemProperty
extends Serializable

This interface represents a System Property (name/value pair) stored in the database. It can be used to override Spring-injected properties that are injected using the @Value annotation.

User: Kelly Tisdell Date: 6/20/12


Method Summary
 Long getId()
           
 String getName()
           
 String getValue()
           
 void setId(Long id)
           
 void setName(String name)
           
 void setValue(String value)
           
 

Method Detail

getId

Long getId()

setId

void setId(Long id)

getName

String getName()

setName

void setName(String name)

getValue

String getValue()

setValue

void setValue(String value)


Copyright © 2013. All Rights Reserved.