Package org.odata4j.edm

Examples of org.odata4j.edm.EdmProperty


        if (!containsProperty(queryInfo.select, propName, parentPropName)) {
          continue;
        }
      }

      EdmProperty prop = eet.findProperty(propName);
      if (prop != null) {
        if (propValue instanceof Text) {
          propValue = ((Text) propValue).getValue();
        } else if (propValue instanceof ShortBlob) {
          propValue = ((ShortBlob) propValue).getBytes();
        }
        properties.add(OProperties.simple(propName, (EdmSimpleType<?>) prop.getType(), propValue));
      } else {
        EdmNavigationProperty navProp = eet.findNavigationProperty(propName);
        if (navProp != null) {
          List<OEntity> expandedProps = new ArrayList<OEntity>();
          try {
View Full Code Here

TOP

Related Classes of org.odata4j.edm.EdmProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.