0a99555401a033704f1f171baab6db11fb5528f2Allan Foster@echo off
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: The contents of this file are subject to the terms
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: of the Common Development and Distribution License
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: (the License). You may not use this file except in
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: compliance with the License.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: You can obtain a copy of the License at
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: https://opensso.dev.java.net/public/CDDLv1.0.html or
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: opensso/legal/CDDLv1.0.txt
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: See the License for the specific language governing
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: permission and limitations under the License.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: When distributing Covered Code, include this CDDL
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: Header Notice in each file and include the License file
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: at opensso/legal/CDDLv1.0.txt.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: If applicable, add the following below the CDDL Header,
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: with the fields enclosed by brackets [] replaced by
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: your own identifying information:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: "Portions Copyrighted [year] [name of copyright owner]"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster: $Id: amverifyarchive.bat,v 1.16 2009/07/06 22:01:16 hvijay Exp $
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
b37e7426f831073464d6d2fe687b959db7ce8273Mark de Reeper: Portions Copyrighted 2011-2015 ForgeRock AS.
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan Fosterset TOOLS_HOME="@TOOLS_HOME@"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
0a99555401a033704f1f171baab6db11fb5528f2Allan Fostersetlocal
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:WHILE
0a99555401a033704f1f171baab6db11fb5528f2Allan Fosterif x%1==x goto WEND
0a99555401a033704f1f171baab6db11fb5528f2Allan Fosterset PARAMS=%PARAMS% %1
0a99555401a033704f1f171baab6db11fb5528f2Allan Fostershift
0a99555401a033704f1f171baab6db11fb5528f2Allan Fostergoto WHILE
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:WEND
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
5deb404a3d276c42ef3e4adef5e584211ab1e8ddjeff.schenkset CLASSPATH="@CONFIG_DIR@"
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich Rileyset CLASSPATH="%CLASSPATH%;${windows.setup.classpath}"
c0192b083f2f990e5bcdeef3db8e55676fc42f5aRich Rileyset CLASSPATH="%CLASSPATH%;%TOOLS_HOME%/resources"
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster
505445259010027ce6eb685ea93b8a09aa67fd5dMark de Reeper"\@JAVA_HOME@/bin/java.exe" -Xms64m -Xmx256m -classpath %CLASSPATH% -D"bootstrap.dir=@CONFIG_DIR@" -D"java.version.current=java.vm.version" -D"java.version.expected=1.4+" -D"am.version.current=com.iplanet.am.version" -D"am.version.expected=@AM_VERSION@" -D"amconfig=AMConfig" -D"max_conn_pool=10" -D"min_conn_pool=1" -D"s1is.java.util.logging.config.class=com.sun.identity.log.s1is.LogConfigReader" -D"com.iplanet.services.configpath=@CONFIG_DIR@" -D"com.sun.identity.configFilePath=@CONFIG_DIR@" -D"com.iplanet.coreservices.configpath=@CONFIG_DIR@" -D"LOG_COMPATMODE=Off" -D"com.iplanet.am.logstatus=INACTIVE" -D"com.iplanet.am.serverMode=false" com.sun.identity.log.cli.ISArchiveVerify %PARAMS%
0a99555401a033704f1f171baab6db11fb5528f2Allan Fosterendlocal
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster:END
0a99555401a033704f1f171baab6db11fb5528f2Allan Foster