/* * Copyright 2016 NAVER Corp. * * 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 com.navercorp.pinpoint.plugin.vertx; import com.navercorp.pinpoint.bootstrap.context.MethodDescriptor; import com.navercorp.pinpoint.common.trace.MethodType; /** * @author jaehong.kim */ public class VertxHttpServerMethodDescriptor implements MethodDescriptor { private int apiId = 0; private int type = MethodType.WEB_REQUEST; @Override public String getMethodName() { return ""; } @Override public String getClassName() { return ""; } @Override public String[] getParameterTypes() { return null; } @Override public String[] getParameterVariableName() { return null; } @Override public String getParameterDescriptor() { return "()"; } @Override public int getLineNumber() { return -1; } @Override public String getFullName() { return VertxHttpServerMethodDescriptor.class.getName(); } @Override public void setApiId(int apiId) { this.apiId = apiId; } @Override public int getApiId() { return apiId; } @Override public String getApiDescriptor() { return "Vert.x HTTP Server"; } public int getType() { return type; } public void setType(int type) { this.type = type; } }