-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChannelControl.java
More file actions
36 lines (33 loc) · 1.03 KB
/
ChannelControl.java
File metadata and controls
36 lines (33 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* **************************************************************************************
* Copyright (c) 2025 Calypso Networks Association https://calypsonet.org/
*
* See the NOTICE file(s) distributed with this work for additional information
* regarding copyright ownership.
*
* This program and the accompanying materials are made available under the terms of the
* MIT License which is available at https://opensource.org/licenses/MIT
*
* SPDX-License-Identifier: MIT
************************************************************************************** */
package org.eclipse.keypop.reader;
/**
* Policy for managing the physical channel after a card request is executed.
*
* @since 2.1.0
*/
public enum ChannelControl {
/**
* Leaves the physical channel open.
*
* @since 2.1.0
*/
KEEP_OPEN,
/**
* Terminates communication with the card.<br>
* The physical channel closes instantly or a card removal sequence is initiated depending on the
* observation mode.
*
* @since 2.1.0
*/
CLOSE_AFTER
}