xds: Added IncompleteData interface in mock CEL library (#7243)

* Added the IncompleteData interface in Java Cel library stub
This commit is contained in:
cindyxue 2020-07-31 10:47:19 -07:00 committed by GitHub
parent 026673cff5
commit 800ef216a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
/*
* Copyright 2020 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.grpc.xds.internal.rbac.engine.cel;
/**
* Interpreter returns an instance of {@code IncompleteData} if
* an object is an instance of {@link PartialMessage}.
*
* <p>This is a Java stub for evaluating Common Expression Language (CEL).
* More information about CEL can be found in https://github.com/google/cel-spec.
* Once Java CEL has been open-sourced, this stub will be removed.
*/
public interface IncompleteData {}