我只是不知道在数据创建过程中如何使用CsdlEnumType
Apaches Olingo V4 Java API。
到目前为止,这是我用尽可能少的代码所做的事情:
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
为字符串。知道如何解决这个问题吗?