blob: d0bb07db2a4d1a0249960a4850e35266bb3f15a8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.dubbo.admin.provider;
import org.apache.dubbo.admin.service.MockRuleService;
import org.apache.dubbo.config.annotation.DubboService;
import org.apache.dubbo.mock.api.MockContext;
import org.apache.dubbo.mock.api.MockResult;
import org.apache.dubbo.mock.api.MockService;
import org.springframework.beans.factory.annotation.Autowired;
/**
* The {@link MockServiceProvider} register as a dubbo service, provide the mock function for the consumer of {@link MockService}.
*/
@DubboService
public class MockServiceProvider implements MockService {
@Autowired
private MockRuleService mockRuleService;
@Override
public MockResult mock(MockContext mockContext) {
return mockRuleService.getMockData(mockContext);
}
}