/* * 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.model.discovery; /** * @author Javier Rojas Date: 01.28.2013 */ public class OpenIdConnectDiscoveryParamsValidator { public static boolean validateParams(String resource, String rel) { return resource != null && !resource.isEmpty(); } }