View Javadoc

1   ////////////////////////////////////////////////////////////////////////////////
2   // MillScript: an Open Spice interpreter and batch website creation tool
3   // Copyright (C) 2004-2005 Kevin Rogers
4   //
5   // This file is part of MillScript.
6   //
7   // MillScript is free software; you can redistribute it and/or modify it under
8   // the terms of the GNU General Public License as published by the Free
9   // Software Foundation; either version 2 of the License, or (at your option)
10  // any later version.
11  //
12  // MillScript is distributed in the hope that it will be useful, but WITHOUT
13  // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  // more details.
16  //
17  // You should have received a copy of the GNU General Public License along with
18  // MillScript; if not, write to the Free Software Foundation, Inc., 59 Temple
19  // Place, Suite 330, Boston, MA  02111-1307  USA
20  ////////////////////////////////////////////////////////////////////////////////
21  package org.millscript.millscript.conf;
22  
23  import org.millscript.commons.vfs.VFile;
24  import org.millscript.commons.vfs.VFolder;
25  
26  /**
27   * @author moya
28   */
29  public class ApiConf extends AbstractConfiguration {
30  
31      /**
32       * @see org.millscript.millscript.conf.Configuration#getInteractivePrompt()
33       */
34      public String getInteractivePrompt() {
35          // No prompt for an API based session
36          return null;
37      }
38  
39      /**
40       * @see org.millscript.millscript.conf.Configuration#getStandardConfFolder()
41       */
42      public VFolder getStandardConfFolder() {
43          // No standard conf folder
44          return null;
45      }
46  
47      /**
48       * @see org.millscript.millscript.conf.Configuration#getStandardConfigurationFile()
49       */
50      public VFile getStandardConfigurationFile() {
51          // No standard configuration file
52          return null;
53      }
54  
55      /**
56       * @see org.millscript.millscript.conf.Configuration#getStandardInventoryFolder()
57       */
58      public VFolder getStandardInventoryFolder() {
59          // No standard inventory
60          return null;
61      }
62  
63      /**
64       * @see org.millscript.millscript.conf.Configuration#getStandardLibFolder()
65       */
66      public VFolder getStandardLibFolder() {
67          // No standard library
68          return null;
69      }
70  
71      /**
72       * @see org.millscript.millscript.conf.Configuration#getWebsiteCacheFolder()
73       */
74      public VFolder getWebsiteCacheFolder() {
75          // No website cache folder
76          return null;
77      }
78  
79      /**
80       * @see org.millscript.millscript.conf.Configuration#getWebsiteConfFolder()
81       */
82      public VFolder getWebsiteConfFolder() {
83          // No website conf folder
84          return null;
85      }
86  
87      /**
88       * @see org.millscript.millscript.conf.Configuration#getWebsiteConfigurationFile()
89       */
90      public VFile getWebsiteConfigurationFile() {
91          // No website configuration file
92          return null;
93      }
94  
95      /**
96       * @see org.millscript.millscript.conf.Configuration#getWebsiteFailureFile()
97       */
98      public VFile getWebsiteFailureFile() {
99          // No website failure file
100         return null;
101     }
102 
103     /**
104      * @see org.millscript.millscript.conf.Configuration#getWebsiteInventoryFolder()
105      */
106     public VFolder getWebsiteInventoryFolder() {
107         // No website inventory
108         return null;
109     }
110 
111     /**
112      * @see org.millscript.millscript.conf.Configuration#getWebsiteLibFolder()
113      */
114     public VFolder getWebsiteLibFolder() {
115         // No website library folder
116         return null;
117     }
118 
119     /**
120      * @see org.millscript.millscript.conf.Configuration#getWebsiteLockFile()
121      */
122     public VFile getWebsiteLockFile() {
123         // No website lock file
124         return null;
125     }
126 
127     /**
128      * @see org.millscript.millscript.conf.Configuration#getWebsiteOutputFolder()
129      */
130     public VFolder getWebsiteOutputFolder() {
131         // No website output folder
132         return null;
133     }
134 
135     /**
136      * @see org.millscript.millscript.conf.Configuration#getWebsiteSuccessFile()
137      */
138     public VFile getWebsiteSuccessFile() {
139         // No website success file
140         return null;
141     }
142 
143     /**
144      * @see org.millscript.millscript.conf.Configuration#getWebsiteVarFolder()
145      */
146     public VFolder getWebsiteVarFolder() {
147         // No website var folder
148         return null;
149     }
150 
151 }