Package com.liferay.portal.kernel.model
Interface ServiceComponentModel
- All Superinterfaces:
BaseModel<ServiceComponent>
,ClassedModel
,Cloneable
,Comparable<ServiceComponent>
,MVCCModel
,Serializable
- All Known Subinterfaces:
ServiceComponent
- All Known Implementing Classes:
ServiceComponentWrapper
The base model interface for the ServiceComponent service. Represents a row in the "ServiceComponent" database table, with each column mapped to a property of this class.
This interface and its corresponding implementation com.liferay.portal.model.impl.ServiceComponentModelImpl
exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.portal.model.impl.ServiceComponentImpl
.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the build date of this service component.Returns the build namespace of this service component.long
Returns the build number of this service component.getData()
Returns the data of this service component.long
Returns the mvcc version of this service component.long
Returns the primary key of this service component.long
Returns the service component ID of this service component.void
setBuildDate
(long buildDate) Sets the build date of this service component.void
setBuildNamespace
(String buildNamespace) Sets the build namespace of this service component.void
setBuildNumber
(long buildNumber) Sets the build number of this service component.void
Sets the data of this service component.void
setMvccVersion
(long mvccVersion) Sets the mvcc version of this service component.void
setPrimaryKey
(long primaryKey) Sets the primary key of this service component.void
setServiceComponentId
(long serviceComponentId) Sets the service component ID of this service component.default String
Methods inherited from interface com.liferay.portal.kernel.model.BaseModel
clone, getAttributeGetterFunctions, getAttributeSetterBiConsumers, getExpandoBridge, getModelAttributes, getPrimaryKeyObj, isCachedModel, isEntityCacheEnabled, isEscapedModel, isFinderCacheEnabled, isNew, resetOriginalValues, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setModelAttributes, setNew, setPrimaryKeyObj, toCacheModel, toEscapedModel, toUnescapedModel
Methods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassName
Methods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getPrimaryKey
long getPrimaryKey()Returns the primary key of this service component.- Returns:
- the primary key of this service component
-
setPrimaryKey
void setPrimaryKey(long primaryKey) Sets the primary key of this service component.- Parameters:
primaryKey
- the primary key of this service component
-
getMvccVersion
long getMvccVersion()Returns the mvcc version of this service component.- Specified by:
getMvccVersion
in interfaceMVCCModel
- Returns:
- the mvcc version of this service component
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this service component.- Specified by:
setMvccVersion
in interfaceMVCCModel
- Parameters:
mvccVersion
- the mvcc version of this service component
-
getServiceComponentId
long getServiceComponentId()Returns the service component ID of this service component.- Returns:
- the service component ID of this service component
-
setServiceComponentId
void setServiceComponentId(long serviceComponentId) Sets the service component ID of this service component.- Parameters:
serviceComponentId
- the service component ID of this service component
-
getBuildNamespace
Returns the build namespace of this service component.- Returns:
- the build namespace of this service component
-
setBuildNamespace
Sets the build namespace of this service component.- Parameters:
buildNamespace
- the build namespace of this service component
-
getBuildNumber
long getBuildNumber()Returns the build number of this service component.- Returns:
- the build number of this service component
-
setBuildNumber
void setBuildNumber(long buildNumber) Sets the build number of this service component.- Parameters:
buildNumber
- the build number of this service component
-
getBuildDate
long getBuildDate()Returns the build date of this service component.- Returns:
- the build date of this service component
-
setBuildDate
void setBuildDate(long buildDate) Sets the build date of this service component.- Parameters:
buildDate
- the build date of this service component
-
getData
Returns the data of this service component.- Returns:
- the data of this service component
-
setData
Sets the data of this service component.- Parameters:
data
- the data of this service component
-
cloneWithOriginalValues
ServiceComponent cloneWithOriginalValues()- Specified by:
cloneWithOriginalValues
in interfaceBaseModel<ServiceComponent>
-
toXmlString
-