package sgf.gateway.main.metadata;
/*******************************************************************************
 * Copyright (c) 2011 University Corporation for Atmospheric Research All rights reserved.
 * 
 * Developed by: Visualization and Enabling Technologies Section (VETS)
 *               Computational and Information Systems Laboratory (CISL)
 *               http://www.vets.ucar.edu/
 * 
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.core.io.ClassPathResource;

/**
 * The Class PopulateCADISMain passes a file to the ThreddsHarvestMain class which contains commands to harvest CADIS THREDDS catalogs.
 * 
 * @author hannah
 * 
 */
public class PublishINMCM4Main {

	/** Logger **/
	private static final Log LOG = LogFactory.getLog(PublishBADCMain.class);

	/**
	 * The main method.
	 * 
	 * @param args
	 *            the args
	 * 
	 * @throws Exception
	 *             the exception
	 */
	public static void main(String[] args) throws Exception {
		LOG.info("Publishing BADC data...");
		ClassPathResource fileResource = new ClassPathResource("sgf/gateway/main/metadata/inmcm4_tds.txt");

		ThreddsPublishingMain.main(new String[] { "-f", fileResource.getFile().getPath() });

	}

}
