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