Class WorkflowPermissionSerializableConfig
- java.lang.Object
-
- lumis.content.workflow.serialization.WorkflowPermissionSerializableConfig
-
public class WorkflowPermissionSerializableConfig extends Object
Serializable value object for Workflow permission structure properties- Since:
- 4.0.8
- Version:
- $Revision: 10458 $ $Date: 2009-06-02 15:49:09 -0300 (Tue, 02 Jun 2009) $
-
-
Constructor Summary
Constructors Constructor Description WorkflowPermissionSerializableConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getChannelId()
String
getId()
int
getPrincipalType()
boolean
isExternal()
Returns if the principal is external to the channel being exported.void
setChannelId(String channelId)
void
setExternal(boolean external)
Sets whether the principal is external to the channel being exported.void
setId(String id)
void
setPrincipalType(int principalType)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getPrincipalType
public int getPrincipalType()
-
setPrincipalType
public void setPrincipalType(int principalType)
-
getChannelId
public String getChannelId()
-
setChannelId
public void setChannelId(String channelId)
-
isExternal
public boolean isExternal()
Returns if the principal is external to the channel being exported.- Returns:
- true if the principal is external.
- Since:
- 4.2.1
-
setExternal
public void setExternal(boolean external)
Sets whether the principal is external to the channel being exported.- Parameters:
external
-- Since:
- 4.2.1
-
-