com.google.gwt.user.server.rpc.RPC.getSourceRepresentation()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(8.8k)|赞(0)|评价(0)|浏览(140)

本文整理了Java中com.google.gwt.user.server.rpc.RPC.getSourceRepresentation方法的一些代码示例,展示了RPC.getSourceRepresentation的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RPC.getSourceRepresentation方法的具体详情如下:
包路径:com.google.gwt.user.server.rpc.RPC
类名称:RPC
方法名:getSourceRepresentation

RPC.getSourceRepresentation介绍

[英]Returns the source representation for a method signature.
[中]返回方法签名的源表示形式。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

private static String formatIllegalAccessErrorMessage(Object target, Method serviceMethod) {
 StringBuffer sb = new StringBuffer();
 sb.append("Blocked attempt to access inaccessible method '");
 sb.append(getSourceRepresentation(serviceMethod));
 sb.append("'");
 if (target != null) {
  sb.append(" on target '");
  sb.append(printTypeName(target.getClass()));
  sb.append("'");
 }
 sb.append("; this is either misconfiguration or a hack attempt");
 return sb.toString();
}

代码示例来源:origin: com.google.gwt/gwt-servlet

private static String formatIllegalArgumentErrorMessage(Object target, Method serviceMethod,
  Object[] args) {
 StringBuffer sb = new StringBuffer();
 sb.append("Blocked attempt to invoke method '");
 sb.append(getSourceRepresentation(serviceMethod));
 sb.append("'");
 if (target != null) {
  sb.append(" on target '");
  sb.append(printTypeName(target.getClass()));
  sb.append("'");
 }
 sb.append(" with invalid arguments");
 if (args != null && args.length > 0) {
  sb.append(Arrays.asList(args));
 }
 return sb.toString();
}

代码示例来源:origin: com.google.gwt/gwt-servlet

public static String encodeResponseForFailure(Method serviceMethod, Throwable cause,
  SerializationPolicy serializationPolicy, int flags) throws SerializationException {
 if (cause == null) {
  throw new NullPointerException("cause cannot be null");
 }
 if (serializationPolicy == null) {
  throw new NullPointerException("serializationPolicy");
 }
 if (serviceMethod != null && !RPCServletUtils.isExpectedException(serviceMethod, cause)) {
  throw new UnexpectedException("Service method '" + getSourceRepresentation(serviceMethod)
    + "' threw an unexpected exception: " + cause.toString(), cause);
 }
 return encodeResponse(cause.getClass(), cause, true, flags, serializationPolicy);
}

代码示例来源:origin: com.google.gwt/gwt-servlet

public static String encodeResponseForSuccess(Method serviceMethod, Object object,
  SerializationPolicy serializationPolicy, int flags) throws SerializationException {
 if (serviceMethod == null) {
  throw new NullPointerException("serviceMethod cannot be null");
 }
 if (serializationPolicy == null) {
  throw new NullPointerException("serializationPolicy");
 }
 Class<?> methodReturnType = serviceMethod.getReturnType();
 if (methodReturnType != void.class && object != null) {
  Class<?> actualReturnType;
  if (methodReturnType.isPrimitive()) {
   actualReturnType = getPrimitiveClassFromWrapper(object.getClass());
  } else {
   actualReturnType = object.getClass();
  }
  if (actualReturnType == null || !methodReturnType.isAssignableFrom(actualReturnType)) {
   throw new IllegalArgumentException("Type '" + printTypeName(object.getClass())
     + "' does not match the return type in the method's signature: '"
     + getSourceRepresentation(serviceMethod) + "'");
  }
 }
 return encodeResponse(methodReturnType, object, false, flags, serializationPolicy);
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

private static String formatIllegalAccessErrorMessage(Object target, Method serviceMethod) {
 StringBuffer sb = new StringBuffer();
 sb.append("Blocked attempt to access inaccessible method '");
 sb.append(getSourceRepresentation(serviceMethod));
 sb.append("'");
 if (target != null) {
  sb.append(" on target '");
  sb.append(printTypeName(target.getClass()));
  sb.append("'");
 }
 sb.append("; this is either misconfiguration or a hack attempt");
 return sb.toString();
}

代码示例来源:origin: net.wetheinter/gwt-user

private static String formatIllegalAccessErrorMessage(Object target, Method serviceMethod) {
 StringBuffer sb = new StringBuffer();
 sb.append("Blocked attempt to access inaccessible method '");
 sb.append(getSourceRepresentation(serviceMethod));
 sb.append("'");
 if (target != null) {
  sb.append(" on target '");
  sb.append(printTypeName(target.getClass()));
  sb.append("'");
 }
 sb.append("; this is either misconfiguration or a hack attempt");
 return sb.toString();
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

private static String formatIllegalArgumentErrorMessage(Object target, Method serviceMethod,
  Object[] args) {
 StringBuffer sb = new StringBuffer();
 sb.append("Blocked attempt to invoke method '");
 sb.append(getSourceRepresentation(serviceMethod));
 sb.append("'");
 if (target != null) {
  sb.append(" on target '");
  sb.append(printTypeName(target.getClass()));
  sb.append("'");
 }
 sb.append(" with invalid arguments");
 if (args != null && args.length > 0) {
  sb.append(Arrays.asList(args));
 }
 return sb.toString();
}

代码示例来源:origin: net.wetheinter/gwt-user

private static String formatIllegalArgumentErrorMessage(Object target, Method serviceMethod,
  Object[] args) {
 StringBuffer sb = new StringBuffer();
 sb.append("Blocked attempt to invoke method '");
 sb.append(getSourceRepresentation(serviceMethod));
 sb.append("'");
 if (target != null) {
  sb.append(" on target '");
  sb.append(printTypeName(target.getClass()));
  sb.append("'");
 }
 sb.append(" with invalid arguments");
 if (args != null && args.length > 0) {
  sb.append(Arrays.asList(args));
 }
 return sb.toString();
}

代码示例来源:origin: net.wetheinter/gwt-user

public static String encodeResponseForFailure(Method serviceMethod, Throwable cause,
  SerializationPolicy serializationPolicy, int flags) throws SerializationException {
 if (cause == null) {
  throw new NullPointerException("cause cannot be null");
 }
 if (serializationPolicy == null) {
  throw new NullPointerException("serializationPolicy");
 }
 if (serviceMethod != null && !RPCServletUtils.isExpectedException(serviceMethod, cause)) {
  throw new UnexpectedException("Service method '" + getSourceRepresentation(serviceMethod)
    + "' threw an unexpected exception: " + cause.toString(), cause);
 }
 return encodeResponse(cause.getClass(), cause, true, flags, serializationPolicy);
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

public static String encodeResponseForFailure(Method serviceMethod, Throwable cause,
  SerializationPolicy serializationPolicy, int flags) throws SerializationException {
 if (cause == null) {
  throw new NullPointerException("cause cannot be null");
 }
 if (serializationPolicy == null) {
  throw new NullPointerException("serializationPolicy");
 }
 if (serviceMethod != null && !RPCServletUtils.isExpectedException(serviceMethod, cause)) {
  throw new UnexpectedException("Service method '" + getSourceRepresentation(serviceMethod)
    + "' threw an unexpected exception: " + cause.toString(), cause);
 }
 return encodeResponse(cause.getClass(), cause, true, flags, serializationPolicy);
}

代码示例来源:origin: net.wetheinter/gwt-user

public static String encodeResponseForSuccess(Method serviceMethod, Object object,
  SerializationPolicy serializationPolicy, int flags) throws SerializationException {
 if (serviceMethod == null) {
  throw new NullPointerException("serviceMethod cannot be null");
 }
 if (serializationPolicy == null) {
  throw new NullPointerException("serializationPolicy");
 }
 Class<?> methodReturnType = serviceMethod.getReturnType();
 if (methodReturnType != void.class && object != null) {
  Class<?> actualReturnType;
  if (methodReturnType.isPrimitive()) {
   actualReturnType = getPrimitiveClassFromWrapper(object.getClass());
  } else {
   actualReturnType = object.getClass();
  }
  if (actualReturnType == null || !methodReturnType.isAssignableFrom(actualReturnType)) {
   throw new IllegalArgumentException("Type '" + printTypeName(object.getClass())
     + "' does not match the return type in the method's signature: '"
     + getSourceRepresentation(serviceMethod) + "'");
  }
 }
 return encodeResponse(methodReturnType, object, false, flags, serializationPolicy);
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

public static String encodeResponseForSuccess(Method serviceMethod, Object object,
  SerializationPolicy serializationPolicy, int flags) throws SerializationException {
 if (serviceMethod == null) {
  throw new NullPointerException("serviceMethod cannot be null");
 }
 if (serializationPolicy == null) {
  throw new NullPointerException("serializationPolicy");
 }
 Class<?> methodReturnType = serviceMethod.getReturnType();
 if (methodReturnType != void.class && object != null) {
  Class<?> actualReturnType;
  if (methodReturnType.isPrimitive()) {
   actualReturnType = getPrimitiveClassFromWrapper(object.getClass());
  } else {
   actualReturnType = object.getClass();
  }
  if (actualReturnType == null || !methodReturnType.isAssignableFrom(actualReturnType)) {
   throw new IllegalArgumentException("Type '" + printTypeName(object.getClass())
     + "' does not match the return type in the method's signature: '"
     + getSourceRepresentation(serviceMethod) + "'");
  }
 }
 return encodeResponse(methodReturnType, object, false, flags, serializationPolicy);
}

相关文章