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.ListType;
020 import com.liferay.portal.model.Phone;
021 import com.liferay.portal.service.ListTypeServiceUtil;
022
023
026 public class PhoneImpl extends PhoneModelImpl implements Phone {
027
028 public PhoneImpl() {
029 }
030
031 public ListType getType() throws PortalException, SystemException {
032 return ListTypeServiceUtil.getListType(getTypeId());
033 }
034
035 }