01: /**
02: * Copyright 2002 Sun Microsystems, Inc. All
03: * rights reserved. Use of this product is subject
04: * to license terms. Federal Acquisitions:
05: * Commercial Software -- Government Users
06: * Subject to Standard License Terms and
07: * Conditions.
08: *
09: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
10: * are trademarks or registered trademarks of Sun Microsystems,
11: * Inc. in the United States and other countries.
12: *
13: * Author: Anurag Gupta
14: */package com.sun.portal.netfile.admin;
15:
16: // NetFile admin console classes
17: import com.sun.portal.netfile.admin.model.NetFileModel;
18: import com.sun.portal.log.common.PortalLogger;
19:
20: public interface NetFileAdminService {
21:
22: public static final String SVC_NAME_ATTR = "com.iplanet.am.console.service.svcName";
23: public static final String TEMPLATE_ATTR = "com.iplanet.am.console.service.templateLevel";
24: public static final String LOCATION_DN = "com-iplanet-am-console-location-dn";
25: public static final String SRA_BASE_HLP_URL = "help.toc";
26: public static final String SRA_NF_HLP_URL = "netfile.help";
27:
28: NetFileModel getModel();
29: }
|