Package com.fuelkiosk.camture.streamsws

Examples of com.fuelkiosk.camture.streamsws.StreamStopRequestType


     * @return StreamStopRequestType
     */
    public StreamStopRequestType createStopRequest(
            final ConnectionType connection,
            final long streamId) {
        final StreamStopRequestType stop = factory.createStreamStopRequestType();
        stop.setConnection(connection);
        stop.setStreamInstanceId(BigInteger.valueOf(streamId));
        return stop;
    }
View Full Code Here

TOP

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

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.