1
14
15 package com.liferay.portal.service;
16
17
18
34 public class ClassNameServiceWrapper implements ClassNameService {
35 public ClassNameServiceWrapper(ClassNameService classNameService) {
36 _classNameService = classNameService;
37 }
38
39 public com.liferay.portal.model.ClassName getClassName(long classNameId)
40 throws com.liferay.portal.kernel.exception.PortalException,
41 com.liferay.portal.kernel.exception.SystemException {
42 return _classNameService.getClassName(classNameId);
43 }
44
45 public com.liferay.portal.model.ClassName getClassName(
46 java.lang.String value)
47 throws com.liferay.portal.kernel.exception.SystemException {
48 return _classNameService.getClassName(value);
49 }
50
51 public long getClassNameId(java.lang.Class<?> classObj) {
52 return _classNameService.getClassNameId(classObj);
53 }
54
55 public long getClassNameId(java.lang.String value) {
56 return _classNameService.getClassNameId(value);
57 }
58
59 public ClassNameService getWrappedClassNameService() {
60 return _classNameService;
61 }
62
63 private ClassNameService _classNameService;
64 }