/* * oxAuth is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */ package org.xdi.oxauth.client.uma; import org.xdi.oxauth.model.uma.UmaConfiguration; import org.xdi.oxauth.model.uma.UmaConstants; import javax.ws.rs.GET; import javax.ws.rs.Produces; /** * The endpoint at which the requester can obtain UMA metadata configuration. * * @author Yuriy Movchan * @author Yuriy Zabrovarnyy * */ public interface UmaConfigurationService { @GET @Produces({ UmaConstants.JSON_MEDIA_TYPE }) public UmaConfiguration getMetadataConfiguration(); }