org.apache.olingo.odata2.api.ep.callback.WriteEntryCallbackResult.setInlineProperties()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(4.4k)|赞(0)|评价(0)|浏览(73)

本文整理了Java中org.apache.olingo.odata2.api.ep.callback.WriteEntryCallbackResult.setInlineProperties()方法的一些代码示例,展示了WriteEntryCallbackResult.setInlineProperties()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WriteEntryCallbackResult.setInlineProperties()方法的具体详情如下:
包路径:org.apache.olingo.odata2.api.ep.callback.WriteEntryCallbackResult
类名称:WriteEntryCallbackResult
方法名:setInlineProperties

WriteEntryCallbackResult.setInlineProperties介绍

[英]Sets the inline properties for this entry
[中]设置此项的内联属性

代码示例

代码示例来源:origin: com.sap.cloud.servicesdk.prov/odata-core

result.setInlineProperties(getInlineEntityProviderProperties(context, inlineInfo).build());

代码示例来源:origin: org.apache.olingo/olingo-odata2-jpa-processor-core

result.setInlineProperties(getInlineEntityProviderProperties(context));
} catch (EdmException e) {
 throw new ODataApplicationException(e.getMessage(), Locale.getDefault(), e);

代码示例来源:origin: io.cronapp/olingo-odata2-jpa-processor-core

result.setInlineProperties(getInlineEntityProviderProperties(context));
} catch (EdmException e) {
 throw new ODataApplicationException(e.getMessage(), Locale.getDefault(), e);

代码示例来源:origin: org.apache.olingo/olingo-odata2-annotation-processor-core

@Override
public WriteEntryCallbackResult retrieveEntryResult(final WriteEntryCallbackContext context)
  throws ODataApplicationException {
 try {
  final EdmEntityType entityType =
    context.getSourceEntitySet().getRelatedEntitySet(context.getNavigationProperty()).getEntityType();
  WriteEntryCallbackResult result = new WriteEntryCallbackResult();
  Object relatedData;
  try {
   relatedData = readRelatedData(context);
  } catch (final ODataNotFoundException e) {
   relatedData = null;
  }
  if (relatedData == null) {
   result.setEntryData(Collections.<String, Object> emptyMap());
  } else {
   result.setEntryData(getStructuralTypeValueMap(relatedData, entityType));
   EntityProviderWriteProperties inlineProperties =
     EntityProviderWriteProperties.serviceRoot(getContext().getPathInfo().getServiceRoot()).callbacks(
       getCallbacks(relatedData, entityType)).expandSelectTree(context.getCurrentExpandSelectTreeNode())
       .build();
   result.setInlineProperties(inlineProperties);
  }
  return result;
 } catch (final ODataException e) {
  throw new ODataApplicationException(e.getLocalizedMessage(), Locale.ROOT, e);
 }
}

代码示例来源:origin: io.cronapp/olingo-odata2-annotation-processor-core

@Override
public WriteEntryCallbackResult retrieveEntryResult(final WriteEntryCallbackContext context)
  throws ODataApplicationException {
 try {
  final EdmEntityType entityType =
    context.getSourceEntitySet().getRelatedEntitySet(context.getNavigationProperty()).getEntityType();
  WriteEntryCallbackResult result = new WriteEntryCallbackResult();
  Object relatedData;
  try {
   relatedData = readRelatedData(context);
  } catch (final ODataNotFoundException e) {
   relatedData = null;
  }
  if (relatedData == null) {
   result.setEntryData(Collections.<String, Object> emptyMap());
  } else {
   result.setEntryData(getStructuralTypeValueMap(relatedData, entityType));
   EntityProviderWriteProperties inlineProperties =
     EntityProviderWriteProperties.serviceRoot(getContext().getPathInfo().getServiceRoot()).callbacks(
       getCallbacks(relatedData, entityType)).expandSelectTree(context.getCurrentExpandSelectTreeNode())
       .build();
   result.setInlineProperties(inlineProperties);
  }
  return result;
 } catch (final ODataException e) {
  throw new ODataApplicationException(e.getLocalizedMessage(), Locale.ROOT, e);
 }
}

代码示例来源:origin: org.apache.olingo/olingo-odata2-annotation-processor-core-incubating

@Override
public WriteEntryCallbackResult retrieveEntryResult(final WriteEntryCallbackContext context)
  throws ODataApplicationException {
 try {
  final EdmEntityType entityType =
    context.getSourceEntitySet().getRelatedEntitySet(context.getNavigationProperty()).getEntityType();
  WriteEntryCallbackResult result = new WriteEntryCallbackResult();
  Object relatedData;
  try {
   relatedData = readRelatedData(context);
  } catch (final ODataNotFoundException e) {
   relatedData = null;
  }
  if (relatedData == null) {
   result.setEntryData(Collections.<String, Object> emptyMap());
  } else {
   result.setEntryData(getStructuralTypeValueMap(relatedData, entityType));
   EntityProviderWriteProperties inlineProperties =
     EntityProviderWriteProperties.serviceRoot(getContext().getPathInfo().getServiceRoot()).callbacks(
       getCallbacks(relatedData, entityType)).expandSelectTree(context.getCurrentExpandSelectTreeNode())
       .build();
   result.setInlineProperties(inlineProperties);
  }
  return result;
 } catch (final ODataException e) {
  throw new ODataApplicationException(e.getLocalizedMessage(), Locale.ROOT, e);
 }
}

相关文章