/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://opensso.dev.java.net/public/CDDLv1.0.html or
* opensso/legal/CDDLv1.0.txt
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: SampleConstants.java,v 1.5 2008/08/19 19:08:22 veiming Exp $
*
*/
/**
* Portions Copyrighted 2013 ForgeRock, Inc.
*/
package com.sun.identity.samples.clientsdk;
public interface SampleConstants {
String HTML_HEADER =
"<!DOCTYPE html PUBLIC \"-//w3c//dtd html 4.0 transitional//en\">" +
"<html><head>" +
"<title>OpenAM - Samples - Service Configuration</title>" +
"<link rel=\"stylesheet\" href=\"sample.css\" />" +
"</head>" +
"<body style=\"background-color: rgb(255, 255, 255);\"" +
"link=\"#0000ff\" vlink=\"#800080\">" +
"<table border=\"0\" " +
"cellpadding=\"4\" cellspacing=\"8\" width=\"100%\">" +
"<tr>" +
"<td class=\"bannerContentLeft\" align=\"center\" width=\"20%\"><a" +
" href=\"http://www.sun.com\"><img src=" +
"\"sunLogo.gif\" border=\"0\"></a></td>" +
"<td class=\"bannerContentCenter\" nowrap=\"nowrap\" valign=\"bottom\"" +
" width=\"60%\">OpenAM<br>" +
"Sample</td> <td class=\"bannerContentRight\" nowrap=\"nowrap\" " +
"valign=\"bottom\" width=\"20%\">&nbsp;</td></tr></table>" +
"<table border=\"0\" cellpadding=\"4\" cellspacing=\"8\" width=\"100%\">"+
"<tbody><tr><td><h2>Service Configuration Sample</h2></td>" +
"<td align=\"right\"><p><a href=\"index.html\">WebApp Samples</a></p>" +
"</td></tr></table>";
}