Ignore:
Timestamp:
09/20/11 03:16:11 (8 months ago)
Author:
delmitz
Branch:
default
Convert:
svn:7c3792e6-d75b-4784-96a6-b298f655ee64/trunk@2782
Message:

modified API interfaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kraken-dom/src/main/java/org/krakenapps/dom/api/WidgetApi.java

    r2 r348  
    2222import org.krakenapps.dom.exception.WidgetNotFoundException; 
    2323import org.krakenapps.dom.model.Widget; 
     24import org.krakenapps.dom.model.WidgetConfig; 
    2425 
    2526public interface WidgetApi extends EntityEventProvider<Widget> { 
     
    2829        Widget createWidget(int organizationId, int userId, int programId) throws AdminNotFoundException; 
    2930 
    30         void removeWidget(int userId, int widgetId) throws WidgetNotFoundException; 
     31        Widget removeWidget(int userId, int widgetId) throws WidgetNotFoundException; 
     32         
     33        WidgetConfig setConfig(int userId, int widgetId, String key, String value) throws WidgetNotFoundException; 
    3134 
    32         void setConfig(int userId, int widgetId, String key, String value) throws WidgetNotFoundException; 
    33  
    34         void unsetConfig(int userId, int widgetId, String key) throws WidgetConfigNotFoundException; 
    35  
     35        WidgetConfig unsetConfig(int userId, int widgetId, String key) throws WidgetConfigNotFoundException; 
    3636} 
Note: See TracChangeset for help on using the changeset viewer.