Class ConfParamServiceImpl
- java.lang.Object
-
- org.apache.syncope.core.keymaster.rest.cxf.service.ConfParamServiceImpl
-
- All Implemented Interfaces:
Serializable
,ConfParamService
@Service public class ConfParamServiceImpl extends Object implements ConfParamService
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static Logger
LOG
protected ConfParamLogic
logic
-
Constructor Summary
Constructors Constructor Description ConfParamServiceImpl(ConfParamLogic logic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
get(String key)
Map<String,Object>
list()
javax.ws.rs.core.Response
remove(String key)
javax.ws.rs.core.Response
set(String key, InputStream value)
-
-
-
Field Detail
-
LOG
protected static final Logger LOG
-
logic
protected final ConfParamLogic logic
-
-
Constructor Detail
-
ConfParamServiceImpl
public ConfParamServiceImpl(ConfParamLogic logic)
-
-
Method Detail
-
list
public Map<String,Object> list()
- Specified by:
list
in interfaceConfParamService
-
get
public javax.ws.rs.core.Response get(String key)
- Specified by:
get
in interfaceConfParamService
-
set
public javax.ws.rs.core.Response set(String key, InputStream value)
- Specified by:
set
in interfaceConfParamService
-
remove
public javax.ws.rs.core.Response remove(String key)
- Specified by:
remove
in interfaceConfParamService
-
-