Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A Class that implements utility methods like:
4
 *             1/ Reding all doctypes from db connection
5
 *             2/ Reading DTD or Schema file from Metacat catalog system
6
 *             3/ Reading Lore type Data Guide from db connection
7
 *  Copyright: 2000 Regents of the University of California and the
8
 *             National Center for Ecological Analysis and Synthesis
9
 *    Authors: Jivka Bojilova
10
 * 
11
 *   '$Author: daigle $'
12
 *     '$Date: 2008-12-26 13:18:53 -0800 (Fri, 26 Dec 2008) $'
13
 * '$Revision: 4709 $'
14
 *
15
 * This program is free software; you can redistribute it and/or modify
16
 * it under the terms of the GNU General Public License as published by
17
 * the Free Software Foundation; either version 2 of the License, or
18
 * (at your option) any later version.
19
 *
20
 * This program is distributed in the hope that it will be useful,
21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
 * GNU General Public License for more details.
24
 *
25
 * You should have received a copy of the GNU General Public License
26
 * along with this program; if not, write to the Free Software
27
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
 */
29

    
30
package edu.ucsb.nceas.metacat.service;
31

    
32
/**
33
 * A suite of utility classes for querying DB
34
 * 
35
 */
36
public abstract class BaseService {
37

    
38
	// package level method reporting if service is refreshable.  Basically,
39
	// we only want ServiceService calling this.
40
	abstract boolean refreshable();
41
	
42
	// subclass must define doRefresh.  It is only called from the refresh() method.
43
	protected abstract void doRefresh() throws ServiceException;
44
	
45
	// package level method to refresh service.  We only want ServiceService 
46
	// calling this.
47
	void refresh() throws ServiceException{
48
		if (refreshable()) {
49
			doRefresh();
50
		}
51
	}
52
	
53
//	abstract void stop() throws ServiceException;
54

    
55
}
(1-1/9)