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.PortalException,
41 com.liferay.portal.SystemException, java.rmi.RemoteException {
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.SystemException, java.rmi.RemoteException {
48 return _classNameService.getClassName(value);
49 }
50
51 public long getClassNameId(java.lang.Class<?> classObj)
52 throws java.rmi.RemoteException {
53 return _classNameService.getClassNameId(classObj);
54 }
55
56 public long getClassNameId(java.lang.String value)
57 throws java.rmi.RemoteException {
58 return _classNameService.getClassNameId(value);
59 }
60
61 public ClassNameService getWrappedClassNameService() {
62 return _classNameService;
63 }
64
65 private ClassNameService _classNameService;
66 }