Package org.wso2.carbon.registry.ws.api
Class WSLogEntry
- java.lang.Object
-
- org.wso2.carbon.registry.ws.api.WSLogEntry
-
public class WSLogEntry extends Object
The WSLogEntry class is a web service compatible representation of org.wso2.carbon.registry.core.LogEntry class. The above mentioned class cannot be directly used as a argument/return type of a web service.
-
-
Constructor Summary
Constructors Constructor Description WSLogEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAction()
String
getActionData()
long
getDate()
String
getResourcePath()
String
getUserName()
void
setAction(int action)
void
setActionData(String actionData)
void
setDate(long date)
void
setResourcePath(String resourcePath)
void
setUserName(String userName)
-
-
-
Method Detail
-
getResourcePath
public String getResourcePath()
-
setResourcePath
public void setResourcePath(String resourcePath)
-
getUserName
public String getUserName()
-
setUserName
public void setUserName(String userName)
-
getDate
public long getDate()
-
setDate
public void setDate(long date)
-
getAction
public int getAction()
-
setAction
public void setAction(int action)
-
getActionData
public String getActionData()
-
setActionData
public void setActionData(String actionData)
-
-