/******************************************************************************* * Copyright (c) 2010-2014 SAP AG and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * SAP AG - initial API and implementation *******************************************************************************/ package org.eclipse.skalli.core.rest.monitor; import org.eclipse.skalli.services.Services; import org.eclipse.skalli.services.extension.rest.RestConverterBase; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public abstract class MonitorConverterBase extends RestConverterBase<Object> { private static final Logger LOG = LoggerFactory.getLogger(MonitorConverterBase.class); protected String serviceComponentName; protected String resourceName; public MonitorConverterBase(String serviceComponentName, String resourceName) { super(Object.class); this.serviceComponentName = serviceComponentName; this.resourceName = resourceName; } @Deprecated public MonitorConverterBase(String serviceComponentName, String resourceName, String host) { super(Object.class, resourceName, host); this.serviceComponentName = serviceComponentName; } @SuppressWarnings("nls") @Override public String getNamespace() { return Monitorable.NAMESPACE + "/" + serviceComponentName + "/monitors/" +getAlias(); } @SuppressWarnings("nls") @Override public String getXsdFileName() { return serviceComponentName + "-" + getAlias() + ".xsd"; } protected <SERVICE_INTERFACE,SERVICE_IMPLEMENTATION> SERVICE_IMPLEMENTATION getServiceInstance(Class<SERVICE_INTERFACE> serviceInterface, Class<SERVICE_IMPLEMENTATION> implementingClass) { SERVICE_INTERFACE boundInstance = Services.getService(serviceInterface); SERVICE_IMPLEMENTATION boundInstanceCasted = null; try { boundInstanceCasted = implementingClass.cast(boundInstance); } catch (ClassCastException e) { LOG.warn("Expected to find " + implementingClass + " bound to service " + serviceInterface + " but got" + boundInstance.getClass()); } return boundInstanceCasted; } }