com.konakart.appif
Interface KKConfigurationIf


public interface KKConfigurationIf

Used to contain a configuration property. Most configuration parameters for KonaKart are stored in the database in a configuration table. They are identified by a key and the data is retrieved by calling the getValue() getter method.


Method Summary
 int getId()
           
 java.lang.String getKey()
          This identifies the configuration parameter.
 java.util.Calendar getLastModified()
           
 java.lang.String getValue()
          This is the actual configuration data.
 void setId(int id)
           
 void setKey(java.lang.String key)
          This identifies the configuration parameter.
 void setLastModified(java.util.Calendar lastModified)
           
 void setValue(java.lang.String value)
          This is the actual configuration data.
 

Method Detail

getId

int getId()
Returns:
Returns the id.

setId

void setId(int id)
Parameters:
id - The id to set.

getKey

java.lang.String getKey()
This identifies the configuration parameter.

Returns:
Returns the key.

setKey

void setKey(java.lang.String key)
This identifies the configuration parameter.

Parameters:
key - The key to set.

getValue

java.lang.String getValue()
This is the actual configuration data.

Returns:
Returns the value.

setValue

void setValue(java.lang.String value)
This is the actual configuration data.

Parameters:
value - The value to set.

getLastModified

java.util.Calendar getLastModified()
Returns:
Returns the lastModified.

setLastModified

void setLastModified(java.util.Calendar lastModified)
Parameters:
lastModified - The lastModified to set.


Copyright © 2006 DS Data Systems UK Ltd.