01: package org.drools.resource;
02:
03: /**
04: * This class is the base resource handler that includes attributes/methods that
05: * all sub-classes will need.
06: *
07: * @author James Williams (james.williams@redhat.com)
08: *
09: */
10: public abstract class BaseResourceHandler {
11:
12: //All implementations will be URL based
13: protected String repositoryUrl = "";
14: }
|