001
014
015 package com.liferay.portal.kernel.jsonwebservice;
016
017 import com.liferay.portal.kernel.util.MethodParameter;
018
019 import java.lang.reflect.Method;
020
021
024 public interface JSONWebServiceActionMapping {
025
026 public Class<?> getActionClass();
027
028 public Method getActionMethod();
029
030 public Object getActionObject();
031
032 public String getContextName();
033
034 public String getContextPath();
035
036 public String getMethod();
037
038 public MethodParameter[] getMethodParameters();
039
040 public String getPath();
041
042 public Method getRealActionMethod();
043
044 public String getSignature();
045
046 public boolean isDeprecated();
047
048 }