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 TypeMethodDescriptionlongReturns the build date of this service component.Returns the build namespace of this service component.longReturns the build number of this service component.getData()Returns the data of this service component.longReturns the mvcc version of this service component.longReturns the primary key of this service component.longReturns the service component ID of this service component.voidsetBuildDate(long buildDate) Sets the build date of this service component.voidsetBuildNamespace(String buildNamespace) Sets the build namespace of this service component.voidsetBuildNumber(long buildNumber) Sets the build number of this service component.voidSets the data of this service component.voidsetMvccVersion(long mvccVersion) Sets the mvcc version of this service component.voidsetPrimaryKey(long primaryKey) Sets the primary key of this service component.voidsetServiceComponentId(long serviceComponentId) Sets the service component ID of this service component.default StringMethods 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, toUnescapedModelMethods inherited from interface com.liferay.portal.kernel.model.ClassedModel
getModelClass, getModelClassNameMethods 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:
getMvccVersionin interfaceMVCCModel- Returns:
- the mvcc version of this service component
-
setMvccVersion
void setMvccVersion(long mvccVersion) Sets the mvcc version of this service component.- Specified by:
setMvccVersionin 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:
cloneWithOriginalValuesin interfaceBaseModel<ServiceComponent>
-
toXmlString
-