use of iso.std.iso_iec._24727.tech.schema.ConnectionHandleType.SlotInfo in project open-ecard by ecsec.
the class HandlerBuilder method buildConnectionHandle.
/**
* Creates a {@code ConnectionHandleType} with all available values in the builder.
*
* @return A {@code ConnectionHandleType} instance.
*/
@Nonnull
public ConnectionHandleType buildConnectionHandle() {
ConnectionHandleType handle = buildAppPath(new ConnectionHandleType());
handle.setSlotHandle(slotHandle);
handle.setRecognitionInfo(buildRecognitionInfo());
if (protectedAuthPath != null) {
ConnectionHandleType.SlotInfo slotInfo = new ConnectionHandleType.SlotInfo();
slotInfo.setProtectedAuthPath(protectedAuthPath);
handle.setSlotInfo(slotInfo);
}
return handle;
}
Aggregations