org.hyperledger.fabric.sdk.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-sdk-java Show documentation
Show all versions of fabric-sdk-java Show documentation
Java SDK for Hyperledger Fabric. Deprecated as of Fabric v2.5, replaced by org.hyperledger.fabric:fabric-gateway.
/*
* Copyright 2016, 2017 DTCC, Fujitsu Australia Software Technology, 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.
*/
package org.hyperledger.fabric.sdk;
import java.util.Set;
import org.hyperledger.fabric.sdk.helper.Utils;
import org.hyperledger.fabric.sdk.identity.X509Enrollment;
import static java.lang.String.format;
/**
* User - Is the interface needed to be implemented by embedding application of the SDK
*/
public interface User {
/**
* Get the name that identifies the user.
*
* @return the user name.
*/
String getName();
/**
* Get the roles to which the user belongs.
*
* @return role names.
*/
Set getRoles();
/**
* Get the user's account
*
* @return the account name
*/
String getAccount();
/**
* Get the user's affiliation.
*
* @return the affiliation.
*/
String getAffiliation();
/**
* Get the user's enrollment certificate information.
*
* @return the enrollment information.
*/
Enrollment getEnrollment();
/**
* Get the Membership Service Provider Identifier provided by the user's organization.
*
* @return MSP Id.
*/
String getMspId();
static void userContextCheck(User userContext) {
if (userContext == null) {
throw new NullPointerException("UserContext is null");
}
final String userName = userContext.getName();
if (Utils.isNullOrEmpty(userName)) {
throw new IllegalArgumentException("UserContext user's name missing.");
}
Enrollment enrollment = userContext.getEnrollment();
if (enrollment == null) {
throw new IllegalArgumentException(format("UserContext for user %s has no enrollment set.", userName));
}
if (enrollment instanceof X509Enrollment) {
if (Utils.isNullOrEmpty(enrollment.getCert())) {
throw new IllegalArgumentException(format("UserContext for user %s enrollment missing user certificate.", userName));
}
if (null == enrollment.getKey()) {
throw new IllegalArgumentException(format("UserContext for user %s has Enrollment missing signing key", userName));
}
}
if (Utils.isNullOrEmpty(userContext.getMspId())) {
throw new IllegalArgumentException(format("UserContext for user %s has user's MSPID missing.", userName));
}
}
}