Example usage for com.liferay.portal.kernel.search IndexableType DELETE

List of usage examples for com.liferay.portal.kernel.search IndexableType DELETE

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.search IndexableType DELETE.

Prototype

IndexableType DELETE

To view the source code for com.liferay.portal.kernel.search IndexableType DELETE.

Click Source Link

Usage

From source file:at.bibbox.reactjsservice.service.base.ToolInformationLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the tool information with the primary key from the database. Also notifies the appropriate model listeners.
 *
 * @param toolInformationId the primary key of the tool information
 * @return the tool information that was removed
 * @throws PortalException if a tool information with the primary key could not be found
 * @throws SystemException if a system exception occurred
 *///from   w w  w  .  j a v a  2  s. co m
@Indexable(type = IndexableType.DELETE)
@Override
public ToolInformation deleteToolInformation(long toolInformationId) throws PortalException, SystemException {
    return toolInformationPersistence.remove(toolInformationId);
}

From source file:at.bibbox.reactjsservice.service.base.ToolInformationLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the tool information from the database. Also notifies the appropriate model listeners.
 *
 * @param toolInformation the tool information
 * @return the tool information that was removed
 * @throws SystemException if a system exception occurred
 *//*from ww w . j a v  a2 s . c o m*/
@Indexable(type = IndexableType.DELETE)
@Override
public ToolInformation deleteToolInformation(ToolInformation toolInformation) throws SystemException {
    return toolInformationPersistence.remove(toolInformation);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.ConfigurationLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the configuration with the primary key from the database. Also notifies the appropriate model listeners.
 *
 * @param configurationId the primary key of the configuration
 * @return the configuration that was removed
 * @throws PortalException if a configuration with the primary key could not be found
 * @throws SystemException if a system exception occurred
 *///from   w w w  .  j  a v a  2 s. c o  m
@Indexable(type = IndexableType.DELETE)
@Override
public Configuration deleteConfiguration(long configurationId) throws PortalException, SystemException {
    return configurationPersistence.remove(configurationId);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.ConfigurationLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the configuration from the database. Also notifies the appropriate model listeners.
 *
 * @param configuration the configuration
 * @return the configuration that was removed
 * @throws SystemException if a system exception occurred
 *//*from   w ww.  j  a  va 2 s  . c om*/
@Indexable(type = IndexableType.DELETE)
@Override
public Configuration deleteConfiguration(Configuration configuration) throws SystemException {
    return configurationPersistence.remove(configuration);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.FahrzeugLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the fahrzeug with the primary key from the database. Also notifies the appropriate model listeners.
 *
 * @param fahrzeugId the primary key of the fahrzeug
 * @return the fahrzeug that was removed
 * @throws PortalException if a fahrzeug with the primary key could not be found
 * @throws SystemException if a system exception occurred
 *///from   w w  w  . ja  v  a2s.  c  o m
@Indexable(type = IndexableType.DELETE)
@Override
public Fahrzeug deleteFahrzeug(long fahrzeugId) throws PortalException, SystemException {
    return fahrzeugPersistence.remove(fahrzeugId);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.FahrzeugLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the fahrzeug from the database. Also notifies the appropriate model listeners.
 *
 * @param fahrzeug the fahrzeug/*from  www .j  a  v  a2 s  .c  o  m*/
 * @return the fahrzeug that was removed
 * @throws SystemException if a system exception occurred
 */
@Indexable(type = IndexableType.DELETE)
@Override
public Fahrzeug deleteFahrzeug(Fahrzeug fahrzeug) throws SystemException {
    return fahrzeugPersistence.remove(fahrzeug);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.ObjectDataLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the object data with the primary key from the database. Also notifies the appropriate model listeners.
 *
 * @param objectdataId the primary key of the object data
 * @return the object data that was removed
 * @throws PortalException if a object data with the primary key could not be found
 * @throws SystemException if a system exception occurred
 *///w w  w  .j a va  2s  .c o  m
@Indexable(type = IndexableType.DELETE)
@Override
public ObjectData deleteObjectData(long objectdataId) throws PortalException, SystemException {
    return objectDataPersistence.remove(objectdataId);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.ObjectDataLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the object data from the database. Also notifies the appropriate model listeners.
 *
 * @param objectData the object data/*  w w w . j av a2  s .com*/
 * @return the object data that was removed
 * @throws SystemException if a system exception occurred
 */
@Indexable(type = IndexableType.DELETE)
@Override
public ObjectData deleteObjectData(ObjectData objectData) throws SystemException {
    return objectDataPersistence.remove(objectData);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.ObjectImageLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the object image with the primary key from the database. Also notifies the appropriate model listeners.
 *
 * @param objectimageId the primary key of the object image
 * @return the object image that was removed
 * @throws PortalException if a object image with the primary key could not be found
 * @throws SystemException if a system exception occurred
 *//*w ww  .  j  av  a 2  s  .co m*/
@Indexable(type = IndexableType.DELETE)
@Override
public ObjectImage deleteObjectImage(long objectimageId) throws PortalException, SystemException {
    return objectImagePersistence.remove(objectimageId);
}

From source file:at.graz.hmmc.liferay.portlet.puch.service.base.ObjectImageLocalServiceBaseImpl.java

License:Open Source License

/**
 * Deletes the object image from the database. Also notifies the appropriate model listeners.
 *
 * @param objectImage the object image/*w  ww .  j  a v  a  2 s . c o m*/
 * @return the object image that was removed
 * @throws SystemException if a system exception occurred
 */
@Indexable(type = IndexableType.DELETE)
@Override
public ObjectImage deleteObjectImage(ObjectImage objectImage) throws SystemException {
    return objectImagePersistence.remove(objectImage);
}