001
014
015 package com.liferay.portal.model.impl;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018 import com.liferay.portal.kernel.exception.SystemException;
019 import com.liferay.portal.model.EmailAddress;
020 import com.liferay.portal.model.ListType;
021 import com.liferay.portal.service.ListTypeServiceUtil;
022
023
026 public class EmailAddressImpl
027 extends EmailAddressModelImpl implements EmailAddress {
028
029 public EmailAddressImpl() {
030 }
031
032 public ListType getType() throws PortalException, SystemException {
033 return ListTypeServiceUtil.getListType(getTypeId());
034 }
035
036 }