Package com.betfair.nonservice.v3.socket

Source Code of com.betfair.nonservice.v3.socket.NonSocketServiceBindingDescriptor

/*
* Copyright 2013, The Sporting Exchange Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright 2013, The Sporting Exchange Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


// Generated from socketServiceBindingDescriptor.ftl
package com.betfair.nonservice.v3.socket;

import com.betfair.nonservice.v3.NonServiceDefinition;

import java.util.ArrayList;
import java.util.List;

import com.betfair.cougar.api.export.Protocol;
import com.betfair.cougar.core.api.ServiceVersion;
import com.betfair.cougar.core.api.ev.OperationKey;

import com.betfair.cougar.transport.api.protocol.socket.SocketBindingDescriptor;

import com.betfair.cougar.transport.api.protocol.socket.SocketOperationBindingDescriptor;

public class NonSocketServiceBindingDescriptor implements SocketBindingDescriptor {

    private final ServiceVersion serviceVersion = new ServiceVersion("v3.0");
    private final String serviceName = "Non";

    public NonSocketServiceBindingDescriptor() {
        someOperationDescriptor = new SocketOperationBindingDescriptor(NonServiceDefinition.someOperationKey);
        operations = new SocketOperationBindingDescriptor[] {
                someOperationDescriptor
        };
    }
   
    @Override
    public Protocol getServiceProtocol() {
        return Protocol.SOCKET;
    }

    @Override
    public SocketOperationBindingDescriptor[] getOperationBindings() {
        return operations;
    }

    @Override
    public ServiceVersion getServiceVersion() {
        return serviceVersion;
    }

    @Override
    public String getServiceName() {
        return serviceName;
    }


    private final SocketOperationBindingDescriptor[] operations;
   
        private final SocketOperationBindingDescriptor someOperationDescriptor;

}
TOP

Related Classes of com.betfair.nonservice.v3.socket.NonSocketServiceBindingDescriptor

TOP
Copyright © 2018 www.massapi.com. 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.