blob: 8f1d977139affa8c80110674f6558536182551ef [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.syncope.common.lib.to;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class CamelMetrics implements Serializable {
private static final long serialVersionUID = -391404198406614231L;
public static class MeanRate implements Serializable {
private static final long serialVersionUID = -233921226510124154L;
private String routeId;
private double value;
public String getRouteId() {
return routeId;
}
public void setRouteId(final String routeId) {
this.routeId = routeId;
}
public double getValue() {
return value;
}
public void setValue(final double value) {
this.value = value;
}
}
private final List<MeanRate> responseMeanRates = new ArrayList<>();
@JacksonXmlElementWrapper(localName = "responseMeanRates")
@JacksonXmlProperty(localName = "meanRate")
public List<MeanRate> getResponseMeanRates() {
return responseMeanRates;
}
}