Interface ServiceComponentModel

All Superinterfaces:
BaseModel<ServiceComponent>, ClassedModel, Cloneable, Comparable<ServiceComponent>, MVCCModel, Serializable
All Known Subinterfaces:
ServiceComponent
All Known Implementing Classes:
ServiceComponentWrapper

@ProviderType public interface ServiceComponentModel extends BaseModel<ServiceComponent>, MVCCModel
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 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 interface MVCCModel
      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 interface MVCCModel
      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

      @AutoEscape String getBuildNamespace()
      Returns the build namespace of this service component.
      Returns:
      the build namespace of this service component
    • setBuildNamespace

      void setBuildNamespace(String buildNamespace)
      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

      @AutoEscape String getData()
      Returns the data of this service component.
      Returns:
      the data of this service component
    • setData

      void setData(String data)
      Sets the data of this service component.
      Parameters:
      data - the data of this service component
    • cloneWithOriginalValues

      ServiceComponent cloneWithOriginalValues()
      Specified by:
      cloneWithOriginalValues in interface BaseModel<ServiceComponent>
    • toXmlString

      default String toXmlString()