在数据创建过程中,我无法弄清楚如何使用Apaches Olingo V4 Java API的CsdlEnumType
。
到目前为止,我用尽可能少的代码完成了这项工作:
1)在我的EdmODataProvider.java
类中,我创建了一个实体类型,并将枚举实体的FQDN
添加到属性中。此外,我已在架构提供程序类中实例化CsdlEnumType
。我想这很有效,因为如果我只使用setValue()
部分中的数字,我就会得到预期的结果。 :
public CsdlEntityType getEntityType(FullQualifiedName entityTypeName) throws ODataException {
CsdlEntityType entityType = new CsdlEntityType();
List<CsdlProperty> properties = new ArrayList<CsdlProperty>();
properties.add(new CsdlProperty().setName("Attributes").setType(new FullQualifiedName("Namespace", "Attributes")));
entityType.setName("Langs").setProperties(properties);
return entityType;
}
public List<CsdlSchema> getSchemas() throws ODataException {
CsdlSchema schema = new CsdlSchema();
schema.setNamespace("Namespace");
List<CsdlEnumType> enumTypes = new ArrayList<CsdlEnumType>();
enumTypes.add(
new CsdlEnumType()
.setName("LangAttributes")
.setMembers(Arrays.asList(
// if I use setValue("0") ... setValue("1") everything works fine
new CsdlEnumMember().setName("DISPNAME").setValue("DISPNAME"),
new CsdlEnumMember().setName("DESC").setValue("DESC")
))
)
// ... add entity type and set the other stuff
}
2)在我的数据提供者类中,我正在创建一个这样的实体:
Entity e = new Entity();
// again: it would work if I would use 0 instead of "DISPNAME" here
e.addProperty(new Property(null, "LangAttributes", ValueType.Enum, "DISPNAME"));
如果我试图调用该实体,我终于收到了错误:
<error xmlns="http://docs.oasis-open.org/odata/ns/metadata">
<code>400</code>
<message>The value 'DISPNAME' is not valid for property 'LangAttributes'.</message>
</error>
我的$metadata
包含:
<EnumType Name="Attribute" IsFlags="false" UnderlyingType="Edm.Int32">
<Member Name="DISPNAME" Value="DISPNAME"/>
<Member Name="DESC" Value="DESC"/>
</EnumType>
....
<EntityType Name="Attributes">
<Property Name="LangAttributes" Type="Namespace.Attribute"/>
</EntityType>
我想问题出现在第2部分中)我将属性DISPNAME
添加为String。知道如何解决这个问题吗?
答案 0 :(得分:1)
我不知道你是否仍然面临这个问题。但也许我的答案对某人有用。根据{{3}}:
枚举类型被命名为基本类型,其值被命名为具有基础整数值的常量。
你很简单无法在Olingo中创建枚举,它具有String底层类型。我的建议是从代码中跳过.setValue("")
部分并依赖默认值(0,1,2等)。不要害怕 - 您可以通过提供名称或值来对请求中的枚举值进行操作。所以只需依靠名称。
在代码中,您可以使用valueOfString(name, null, null, null, null, null, Long)
中的EdmEnumType
方法。