MACToken.java revision ec6f3779c641cb13f915072f87a5d11a6b74ba0c
806N/A/*
2887N/A * DO NOT REMOVE COPYRIGHT NOTICES OR THIS HEADER.
806N/A *
806N/A * Copyright (c) 2012 ForgeRock Inc. All rights reserved.
806N/A *
806N/A * The contents of this file are subject to the terms
806N/A * of the Common Development and Distribution License
806N/A * (the License). You may not use this file except in
806N/A * compliance with the License.
806N/A *
6982N/A * You can obtain a copy of the License at
6982N/A * http://forgerock.org/license/CDDLv1.0.html
806N/A * See the License for the specific language governing
806N/A * permission and limitations under the License.
806N/A *
806N/A * When distributing Covered Code, include this CDDL
6982N/A * Header Notice in each file and include the License file
6982N/A * at http://forgerock.org/license/CDDLv1.0.html
6982N/A * If applicable, add the following below the CDDL Header,
6982N/A * with the fields enclosed by brackets [] replaced by
806N/A * your own identifying information:
806N/A * "Portions Copyrighted [year] [name of copyright owner]"
806N/A */
806N/A
3232N/Apackage org.forgerock.restlet.ext.oauth2.consumer;
6184N/A
806N/A/**
806N/A * A NAME does ...
806N/A * <p/>
806N/A *
806N/A * <pre>
806N/A * {
806N/A * "access_token":"SlAV32hkKG",
806N/A * "token_type":"mac",
806N/A * "expires_in":3600,
806N/A * "refresh_token":"8xLOxBtZp8",
806N/A * "mac_key":"adijq39jdlaska9asud",
806N/A * "mac_algorithm":"hmac-sha-256"
806N/A * }
806N/A * </pre>
806N/A *
806N/A * @author Laszlo Hordos
806N/A */
806N/Apublic class MACToken {
806N/A}
806N/A