Class BusinessContextConfig
- java.lang.Object
-
- lumis.portal.businesscontext.internal.BusinessContextConfig
-
public class BusinessContextConfig extends Object
Business context is a xml file that contains all information about this context.- Since:
- 7.0.0
- Version:
- $Revision: 15055 $ $Date: 2012-11-29 18:48:37 -0200 (Thu, 29 Nov 2012) $
-
-
Constructor Summary
Constructors Constructor Description BusinessContextConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContent()
Gets the content from xml file.String
getId()
Gets the BusinessContext identifier.String
getName()
Gets the BusinessContext name.void
setContent(String content)
Sets the BusinessContext content.void
setId(String id)
Sets the identifier.void
setName(String name)
Sets the name.
-
-
-
Method Detail
-
getId
public String getId()
Gets the BusinessContext identifier.- Returns:
- the identifier.
- Since:
- 7.0.0
-
setId
public void setId(String id)
Sets the identifier.- Parameters:
id
- BusinessContext identifier.- Since:
- 7.0.0
-
getName
public String getName()
Gets the BusinessContext name.- Returns:
- the name.
- Since:
- 7.0.0
-
setName
public void setName(String name)
Sets the name.- Parameters:
name
- BusinessContext name.- Since:
- 7.0.0
-
getContent
public String getContent()
Gets the content from xml file.- Returns:
- the content.
- Since:
- 7.0.0
-
setContent
public void setContent(String content)
Sets the BusinessContext content.- Parameters:
content
- BusinessContext content.- Since:
- 7.0.0
-
-