com.liferay.portlet.expando.service.impl
Class ExpandoValueServiceImpl

java.lang.Object
  extended by com.liferay.portal.service.impl.PrincipalBean
      extended by com.liferay.portlet.expando.service.base.ExpandoValueServiceBaseImpl
          extended by com.liferay.portlet.expando.service.impl.ExpandoValueServiceImpl
All Implemented Interfaces:
com.liferay.portlet.expando.service.ExpandoValueService, org.springframework.beans.factory.InitializingBean

public class ExpandoValueServiceImpl
extends ExpandoValueServiceBaseImpl

View Source

Author:
Raymond Augé, Brian Wing Shun Chan

Field Summary
 
Fields inherited from class com.liferay.portlet.expando.service.base.ExpandoValueServiceBaseImpl
counterLocalService, counterService, expandoColumnFinder, expandoColumnLocalService, expandoColumnPersistence, expandoColumnService, expandoRowFinder, expandoRowLocalService, expandoRowPersistence, expandoRowService, expandoTableLocalService, expandoTablePersistence, expandoTableService, expandoValueFinder, expandoValueLocalService, expandoValuePersistence
 
Fields inherited from class com.liferay.portal.service.impl.PrincipalBean
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
 
Constructor Summary
ExpandoValueServiceImpl()
           
 
Method Summary
 com.liferay.portlet.expando.model.ExpandoValue addValue(long columnId, long rowId, long classPK, java.lang.String data)
           
 void deleteColumnValues(long columnId)
           
 void deleteRowValues(long rowId)
           
 void deleteTableValues(long tableId)
           
 void deleteValue(long valueId)
           
 void deleteValues(long classNameId, long classPK)
           
 void deleteValues(java.lang.String className, long classPK)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(long columnId, int begin, int end)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(long classNameId, java.lang.String tableName, java.lang.String columnName, int begin, int end)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(java.lang.String className, java.lang.String tableName, java.lang.String columnName, int begin, int end)
           
 int getColumnValuesCount(long columnId)
           
 int getColumnValuesCount(long classNameId, java.lang.String tableName, java.lang.String columnName)
           
 int getColumnValuesCount(java.lang.String className, java.lang.String tableName, java.lang.String columnName)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(long classNameId, java.lang.String columnName, int begin, int end)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(java.lang.String className, java.lang.String columnName, int begin, int end)
           
 int getDefaultTableColumnValuesCount(long classNameId, java.lang.String columnName)
           
 int getDefaultTableColumnValuesCount(java.lang.String className, java.lang.String columnName)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(long rowId)
           
 java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(long rowId, int begin, int end)
           
 int getRowValuesCount(long rowId)
           
 com.liferay.portlet.expando.model.ExpandoValue getValue(long valueId)
           
 com.liferay.portlet.expando.model.ExpandoValue getValue(long columnId, long rowId)
           
 com.liferay.portlet.expando.model.ExpandoValue getValue(long classNameId, java.lang.String tableName, java.lang.String name, long rowId)
           
 com.liferay.portlet.expando.model.ExpandoValue getValue(java.lang.String className, java.lang.String tableName, java.lang.String name, long rowId)
           
 
Methods inherited from class com.liferay.portlet.expando.service.base.ExpandoValueServiceBaseImpl
afterPropertiesSet, getCounterLocalService, getCounterService, getExpandoColumnFinder, getExpandoColumnLocalService, getExpandoColumnPersistence, getExpandoColumnService, getExpandoRowFinder, getExpandoRowLocalService, getExpandoRowPersistence, getExpandoRowService, getExpandoTableLocalService, getExpandoTablePersistence, getExpandoTableService, getExpandoValueFinder, getExpandoValueLocalService, getExpandoValuePersistence, setCounterLocalService, setCounterService, setExpandoColumnFinder, setExpandoColumnLocalService, setExpandoColumnPersistence, setExpandoColumnService, setExpandoRowFinder, setExpandoRowLocalService, setExpandoRowPersistence, setExpandoRowService, setExpandoTableLocalService, setExpandoTablePersistence, setExpandoTableService, setExpandoValueFinder, setExpandoValueLocalService, setExpandoValuePersistence
 
Methods inherited from class com.liferay.portal.service.impl.PrincipalBean
getGuestOrUserId, getPermissionChecker, getUser, getUserId
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExpandoValueServiceImpl

public ExpandoValueServiceImpl()
Method Detail

addValue

public com.liferay.portlet.expando.model.ExpandoValue addValue(long columnId,
                                                               long rowId,
                                                               long classPK,
                                                               java.lang.String data)
                                                        throws com.liferay.portal.PortalException,
                                                               com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

deleteColumnValues

public void deleteColumnValues(long columnId)
                        throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

deleteRowValues

public void deleteRowValues(long rowId)
                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

deleteTableValues

public void deleteTableValues(long tableId)
                       throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

deleteValue

public void deleteValue(long valueId)
                 throws com.liferay.portal.PortalException,
                        com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

deleteValues

public void deleteValues(java.lang.String className,
                         long classPK)
                  throws com.liferay.portal.PortalException,
                         com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

deleteValues

public void deleteValues(long classNameId,
                         long classPK)
                  throws com.liferay.portal.PortalException,
                         com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

getColumnValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(long columnId,
                                                                                      int begin,
                                                                                      int end)
                                                                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getColumnValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(java.lang.String className,
                                                                                      java.lang.String tableName,
                                                                                      java.lang.String columnName,
                                                                                      int begin,
                                                                                      int end)
                                                                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getColumnValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(long classNameId,
                                                                                      java.lang.String tableName,
                                                                                      java.lang.String columnName,
                                                                                      int begin,
                                                                                      int end)
                                                                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getColumnValuesCount

public int getColumnValuesCount(long columnId)
                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getColumnValuesCount

public int getColumnValuesCount(java.lang.String className,
                                java.lang.String tableName,
                                java.lang.String columnName)
                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getColumnValuesCount

public int getColumnValuesCount(long classNameId,
                                java.lang.String tableName,
                                java.lang.String columnName)
                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getDefaultTableColumnValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(java.lang.String className,
                                                                                                  java.lang.String columnName,
                                                                                                  int begin,
                                                                                                  int end)
                                                                                           throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getDefaultTableColumnValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(long classNameId,
                                                                                                  java.lang.String columnName,
                                                                                                  int begin,
                                                                                                  int end)
                                                                                           throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getDefaultTableColumnValuesCount

public int getDefaultTableColumnValuesCount(java.lang.String className,
                                            java.lang.String columnName)
                                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getDefaultTableColumnValuesCount

public int getDefaultTableColumnValuesCount(long classNameId,
                                            java.lang.String columnName)
                                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getRowValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(long rowId)
                                                                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getRowValues

public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(long rowId,
                                                                                   int begin,
                                                                                   int end)
                                                                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getRowValuesCount

public int getRowValuesCount(long rowId)
                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getValue

public com.liferay.portlet.expando.model.ExpandoValue getValue(long valueId)
                                                        throws com.liferay.portal.PortalException,
                                                               com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

getValue

public com.liferay.portlet.expando.model.ExpandoValue getValue(long columnId,
                                                               long rowId)
                                                        throws com.liferay.portal.PortalException,
                                                               com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

getValue

public com.liferay.portlet.expando.model.ExpandoValue getValue(java.lang.String className,
                                                               java.lang.String tableName,
                                                               java.lang.String name,
                                                               long rowId)
                                                        throws com.liferay.portal.PortalException,
                                                               com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException

getValue

public com.liferay.portlet.expando.model.ExpandoValue getValue(long classNameId,
                                                               java.lang.String tableName,
                                                               java.lang.String name,
                                                               long rowId)
                                                        throws com.liferay.portal.PortalException,
                                                               com.liferay.portal.SystemException
Throws:
com.liferay.portal.PortalException
com.liferay.portal.SystemException