/* * 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.clientinfo; /** * Validates the parameters received for the client info web service. * * @author Javier Rojas Blum Date: 07.19.2012 */ public class ClientInfoParamsValidator { /** * Validates the parameters for a client info request. * * @param accessToken * @return Returns <code>true</code> when all the parameters are valid. */ public static boolean validateParams(String accessToken) { return accessToken != null && !accessToken.isEmpty(); } }