com.ibm.g11n.pipeline.client.impl.BundleMetricsImpl Maven / Gradle / Ivy
/*
* Copyright IBM Corp. 2015
*
* 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.ibm.g11n.pipeline.client.impl;
import java.util.Collections;
import java.util.EnumMap;
import java.util.Map;
import com.ibm.g11n.pipeline.client.BundleMetrics;
import com.ibm.g11n.pipeline.client.ReviewStatusMetrics;
import com.ibm.g11n.pipeline.client.TranslationStatus;
/**
* BundleMetrics implementation class.
*
* @author Yoshito Umaoka
*/
class BundleMetricsImpl extends BundleMetrics {
private final Map> tsByLang;
private final Map rsByLang;
private final Map> psByLang;
BundleMetricsImpl(Map> tsByLang,
Map rsByLang,
Map> psByLang) {
this.tsByLang = tsByLang;
this.rsByLang = rsByLang;
this.psByLang = psByLang;
}
@Override
public Map> getTranslationStatusMetricsByLanguage() {
if (tsByLang == null) {
return null;
}
return Collections.unmodifiableMap(tsByLang);
}
@Override
public Map getReviewStatusMetricsByLanguage() {
if (rsByLang == null) {
return null;
}
return Collections.unmodifiableMap(rsByLang);
}
@Override
public Map> getPartnerStatusMetricsByLanguage() {
if (psByLang == null) {
return null;
}
return Collections.unmodifiableMap(psByLang);
}
}