Package com.betfair.testingservice.v1.socket

Source Code of com.betfair.testingservice.v1.socket.TestingSocketServiceBindingDescriptor

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

import com.betfair.testingservice.v1.TestingServiceDefinition;

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

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

    public TestingSocketServiceBindingDescriptor() {
        refreshAllCachesDescriptor = new SocketOperationBindingDescriptor(TestingServiceDefinition.refreshAllCachesKey);
        refreshCacheDescriptor = new SocketOperationBindingDescriptor(TestingServiceDefinition.refreshCacheKey);
        getIDDDescriptor = new SocketOperationBindingDescriptor(TestingServiceDefinition.getIDDKey);
        getLogEntriesDescriptor = new SocketOperationBindingDescriptor(TestingServiceDefinition.getLogEntriesKey);
        getLogEntriesByDateRangeDescriptor = new SocketOperationBindingDescriptor(TestingServiceDefinition.getLogEntriesByDateRangeKey);
        operations = new SocketOperationBindingDescriptor[] {
                refreshAllCachesDescriptor,
                refreshCacheDescriptor,
                getIDDDescriptor,
                getLogEntriesDescriptor,
                getLogEntriesByDateRangeDescriptor
        };
    }
   
    @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 refreshAllCachesDescriptor;
        private final SocketOperationBindingDescriptor refreshCacheDescriptor;
        private final SocketOperationBindingDescriptor getIDDDescriptor;
        private final SocketOperationBindingDescriptor getLogEntriesDescriptor;
        private final SocketOperationBindingDescriptor getLogEntriesByDateRangeDescriptor;

}
TOP

Related Classes of com.betfair.testingservice.v1.socket.TestingSocketServiceBindingDescriptor

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.