lib/server-core-ext/src/main/java/org/apache/olingo/server/core/responses/EntitySetResponse.java [137:155]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String buildOperationTarget(ContextURL contextURL) {
    StringBuilder result = new StringBuilder();
    if (contextURL.getServiceRoot() != null) {
      result.append(contextURL.getServiceRoot());
    }
    if (contextURL.getEntitySetOrSingletonOrType() != null) {
      if (result.length() != 0) {
        result.append("/");
      }
      result.append(Encoder.encode(contextURL.getEntitySetOrSingletonOrType()));
    }
    if (contextURL.getKeyPath() != null) {
      result.append('(').append(contextURL.getKeyPath()).append(')');
    }    
    if (contextURL.getNavOrPropertyPath() != null) {
      result.append('/').append(contextURL.getNavOrPropertyPath());
    }
    return result.toString();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lib/server-core-ext/src/main/java/org/apache/olingo/server/core/responses/PropertyResponse.java [198:216]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private String buildOperationTarget(ContextURL contextURL) {
    StringBuilder result = new StringBuilder();
    if (contextURL.getServiceRoot() != null) {
      result.append(contextURL.getServiceRoot());
    }
    if (contextURL.getEntitySetOrSingletonOrType() != null) {
      if (result.length() != 0) {
        result.append("/");
      }
      result.append(Encoder.encode(contextURL.getEntitySetOrSingletonOrType()));
    }
    if (contextURL.getKeyPath() != null) {
      result.append('(').append(contextURL.getKeyPath()).append(')');
    }    
    if (contextURL.getNavOrPropertyPath() != null) {
      result.append('/').append(contextURL.getNavOrPropertyPath());
    }
    return result.toString();
  }  
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



