Package org.jscsi.target.settings

Examples of org.jscsi.target.settings.SingleNumericalValue


        if (range == null && target.getConfig().getAllowSloppyNegotiation()) {
            /*
             * The format was violated. The jSCSI Initiator sends "IFMarkInt=2048" and "OFMarkInt=2048", not ranges. If
             * values is at least a number we will fix this.
             */
            final SingleNumericalValue singleValue = SingleNumericalValue.parseSingleNumericValue(values);
            if (singleValue != null) {
                range = NumericalValueRange.create(singleValue.getValue(),// min
                        singleValue.getValue());// max
            }
        }

        return range;
    }
View Full Code Here

TOP

Related Classes of org.jscsi.target.settings.SingleNumericalValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.