/* * Copyright 2013-2014 the original author or authors. * * 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 org.springframework.hateoas.core; import org.springframework.hateoas.RelProvider; import org.springframework.plugin.core.PluginRegistry; import org.springframework.util.Assert; /** * @author Oliver Gierke */ public class DelegatingRelProvider implements RelProvider { private final PluginRegistry<RelProvider, Class<?>> providers; public DelegatingRelProvider(PluginRegistry<RelProvider, Class<?>> providers) { Assert.notNull(providers, "RelProviders must not be null!"); this.providers = providers; } /* * (non-Javadoc) * @see org.springframework.hateoas.RelProvider#getRelForSingleResource(java.lang.Class) */ @Override public String getItemResourceRelFor(Class<?> type) { return providers.getPluginFor(type).getItemResourceRelFor(type); } /* * (non-Javadoc) * @see org.springframework.hateoas.RelProvider#getRelForCollectionResource(java.lang.Class) */ @Override public String getCollectionResourceRelFor(java.lang.Class<?> type) { return providers.getPluginFor(type).getCollectionResourceRelFor(type); } /* * (non-Javadoc) * @see org.springframework.plugin.core.Plugin#supports(java.lang.Object) */ @Override public boolean supports(java.lang.Class<?> delimiter) { return providers.hasPluginFor(delimiter); } }