Package com.flowable.core.content.api
Interface DocumentDefinitionBuilder
-
public interface DocumentDefinitionBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentDefinition
create()
DocumentDefinitionBuilder
description(String description)
String
getDescription()
String
getInitialState()
String
getInitialSubState()
String
getInitialSubType()
String
getInitialType()
String
getName()
DocumentDefinitionBuilder
initialState(String initialState)
DocumentDefinitionBuilder
initialSubState(String initialSubState)
DocumentDefinitionBuilder
initialSubType(String initialSubType)
DocumentDefinitionBuilder
initialType(String initialType)
DocumentDefinitionBuilder
name(String name)
-
-
-
Method Detail
-
getName
String getName()
-
name
DocumentDefinitionBuilder name(String name)
-
getDescription
String getDescription()
-
description
DocumentDefinitionBuilder description(String description)
-
getInitialType
String getInitialType()
-
initialType
DocumentDefinitionBuilder initialType(String initialType)
-
getInitialSubType
String getInitialSubType()
-
initialSubType
DocumentDefinitionBuilder initialSubType(String initialSubType)
-
getInitialState
String getInitialState()
-
initialState
DocumentDefinitionBuilder initialState(String initialState)
-
getInitialSubState
String getInitialSubState()
-
initialSubState
DocumentDefinitionBuilder initialSubState(String initialSubState)
-
create
DocumentDefinition create()
-
-