Renamed file.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/67505b7d Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/67505b7d Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/67505b7d Branch: refs/heads/0.2-dev-clientrpc Commit: 67505b7dc7ed4176f096c3e17361dea99cff0e6c Parents: ae2ff9e Author: Aaron McCurry <[email protected]> Authored: Wed Feb 27 19:56:16 2013 -0500 Committer: Aaron McCurry <[email protected]> Committed: Wed Feb 27 19:56:16 2013 -0500 ---------------------------------------------------------------------- .../src/main/scripts/interface/BlurRPC.thrift | 49 --------------- .../src/main/scripts/interface/BlurSimple.thrift | 49 +++++++++++++++ 2 files changed, 49 insertions(+), 49 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/67505b7d/src/distribution/src/main/scripts/interface/BlurRPC.thrift ---------------------------------------------------------------------- diff --git a/src/distribution/src/main/scripts/interface/BlurRPC.thrift b/src/distribution/src/main/scripts/interface/BlurRPC.thrift deleted file mode 100644 index 4fd60b4..0000000 --- a/src/distribution/src/main/scripts/interface/BlurRPC.thrift +++ /dev/null @@ -1,49 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ - -namespace java org.apache.blur.docgroup -namespace rb blur -namespace perl Blur - -include 'BlurCommon.thrift' - -struct DocumentResult { - 1:i64 totalHits, - 2:list<BlurCommon.Document> documents -} - -struct DocumentGroup { - 1:BlurCommon.Document primeDoc, - 2:list<BlurCommon.Document> documents -} - -struct DocumentGroupResult { - 1:i64 totalHits, - 2:list<DocumentGroup> documents -} - -service DocumentService { - - DocumentResult docSearch (1:string query) throws (1:BlurCommon.BlurException ex) - -} - -service DocumentGroupService extends DocumentService { - - DocumentGroupResult docGroupSearch (1:string query) throws (1:BlurCommon.BlurException ex) - -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/67505b7d/src/distribution/src/main/scripts/interface/BlurSimple.thrift ---------------------------------------------------------------------- diff --git a/src/distribution/src/main/scripts/interface/BlurSimple.thrift b/src/distribution/src/main/scripts/interface/BlurSimple.thrift new file mode 100644 index 0000000..4fd60b4 --- /dev/null +++ b/src/distribution/src/main/scripts/interface/BlurSimple.thrift @@ -0,0 +1,49 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +namespace java org.apache.blur.docgroup +namespace rb blur +namespace perl Blur + +include 'BlurCommon.thrift' + +struct DocumentResult { + 1:i64 totalHits, + 2:list<BlurCommon.Document> documents +} + +struct DocumentGroup { + 1:BlurCommon.Document primeDoc, + 2:list<BlurCommon.Document> documents +} + +struct DocumentGroupResult { + 1:i64 totalHits, + 2:list<DocumentGroup> documents +} + +service DocumentService { + + DocumentResult docSearch (1:string query) throws (1:BlurCommon.BlurException ex) + +} + +service DocumentGroupService extends DocumentService { + + DocumentGroupResult docGroupSearch (1:string query) throws (1:BlurCommon.BlurException ex) + +} \ No newline at end of file
