blob: c69c39eefb3d1786c2d2b31d78c640f6a34647f9 [file] [log] [blame]
/*
* Copyright 2017 Huawei Technologies Co., Ltd
*
* 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.
*/
package io.servicecomb.saga.core;
import static java.util.Collections.emptyMap;
import io.servicecomb.saga.core.application.interpreter.RestRequestChecker;
import java.util.Map;
public class RestOperation implements Operation {
private final String path;
private final String method;
private final Map<String, Map<String, String>> params;
public RestOperation(String path, String method, Map<String, Map<String, String>> params) {
RestRequestChecker.checkParameters(method, params);
this.path = path;
this.method = method;
this.params = params == null? emptyMap() : params;
}
public String path() {
return path;
}
public String method() {
return method;
}
public Map<String, Map<String, String>> params() {
return params;
}
@Override
public String toString() {
return "Operation{" +
"path='" + path + '\'' +
", method='" + method + '\'' +
", params=" + params +
'}';
}
}