Package com.betfair.baseline.v1.socket

Source Code of com.betfair.baseline.v1.socket.BaselineSocketServiceBindingDescriptor

/*
* 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.baseline.v1.socket;

import com.betfair.baseline.v1.BaselineServiceDefinition;

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 BaselineSocketServiceBindingDescriptor implements SocketBindingDescriptor {

    private final ServiceVersion serviceVersion = new ServiceVersion("v1.0");
    private final String serviceName = "Baseline";

    public BaselineSocketServiceBindingDescriptor() {
        testSimpleGetDescriptor = new SocketOperationBindingDescriptor(BaselineServiceDefinition.testSimpleGetKey);
        operations = new SocketOperationBindingDescriptor[] {
                testSimpleGetDescriptor
        };
    }
   
    @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 testSimpleGetDescriptor;

}
TOP

Related Classes of com.betfair.baseline.v1.socket.BaselineSocketServiceBindingDescriptor

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.