| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| NegotiationType |
|
| 0.0;0 |
| 1 | package org.jscsi.target.settings; | |
| 2 | ||
| 3 | ||
| 4 | import org.jscsi.target.settings.entry.Entry; | |
| 5 | ||
| 6 | ||
| 7 | /** | |
| 8 | * The {@link NegotiationType} of an {@link Entry} affects the way the {@link Entry}'s parameter final value is reached. | |
| 9 | * | |
| 10 | * @author Andreas Ergenzinger | |
| 11 | */ | |
| 12 | 0 | public enum NegotiationType { |
| 13 | /** | |
| 14 | * The parameter is declared, i.e. the iSCSI initiator will determine the value and only inform the jSCSI Target | |
| 15 | * about its selection. | |
| 16 | */ | |
| 17 | 0 | DECLARED, |
| 18 | /** | |
| 19 | * The parameter must be negotiated, i.e. the jSCSI Target must try to select a mutually supported value and return | |
| 20 | * the result to the initiator. | |
| 21 | */ | |
| 22 | 0 | NEGOTIATED |
| 23 | } |