Package com.fuelkiosk.camture.streamsws

Examples of com.fuelkiosk.camture.streamsws.StreamSelect


     * @return StreamSelect
     */
    public StreamSelect createStreamSelect(
            final StreamSelectType type,
            final int selectId) {
        final StreamSelect stream = factory.createStreamSelect();
        switch (type) {
            case CameraID:
                stream.setStreamID(BigInteger.valueOf(selectId));
                break;
            case FuelingPointID:
                stream.setClientID(Integer.valueOf(selectId));
                break;
            default:
                logger.severe("Unknown Type:" + type);
        }
        return stream;
View Full Code Here

TOP

Related Classes of com.fuelkiosk.camture.streamsws.StreamSelect

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.