-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FAB-985 Implement official SDK API design
FAB-985 Stub out functions still to be implemented and move existing functions to classes as described by the documentation link in the issue. - New Client class is added as main API entry and allows an application to have more than one instance - Chain class is modified to become the main class for submitting proposals and transactions - Member is deleted and replaced by new class User Patch 3: further refactoring and restoring "endorser-tests.js" to work again Patch 4: restored "headless-tests.js" Patch 5: restored "orderer-tests.js", "orderer-chain-tests.js", "chain-fabriccop-tests.js" and "end-to-end.js" Patch 6: merged with latest in master Change-Id: Icd03dd0bcb5c913276aa4879593ad66e6e824bc6 Signed-off-by: cdaughtr <cdaughtr@us.ibm.com> Signed-off-by: Jim Zhang <jzhang@us.ibm.com>
- Loading branch information
1 parent
fecedd7
commit 04a9d05
Showing
21 changed files
with
1,763 additions
and
1,621 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Copyright 2016 IBM All Rights Reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* This is the pluggable module for the "hfc-cop" (Hyperledger Fabric Client Membership Services | ||
* aka "COP") package. COP is not an acronym. The name was selected because: | ||
* - it provides police-like security functionality for Hyperledger Fabric, and | ||
* - it is shorter and easier to say and write “COP” rather than “Membership Services" | ||
* | ||
* @module hfc-cop | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.