View Javadoc

1   /**
2    * Copyright (C) 2005-2009 Alfresco Software Limited.
3    *
4    * This file is part of the Spring Surf Extension project.
5    *
6    * Licensed under the Apache License, Version 2.0 (the "License");
7    * you may not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    *
10   *  http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  package org.springframework.extensions.config;
20  
21  import org.springframework.extensions.config.WebStudioConfigElement.ApplicationDescriptor;
22  
23  /**
24   * @author muzquiano
25   */
26  public interface WebStudioConfigProperties
27  {
28      /**
29       * Whether the current Web Studio instance is in developer mode
30       * 
31       * @return
32       */
33      public boolean isDeveloperMode();
34  
35      /**
36       * Allows the developer mode switch to be toggled
37       * 
38       * @param developerMode
39       */
40      public void setDeveloperMode(boolean developerMode);
41  
42      /**
43       * Returns an array of application ids for Web Studio
44       * 
45       * @return string array
46       */
47      public String[] getApplicationIds();
48  
49      /**
50       * Returns the application descriptor for the given application id
51       * 
52       * @param id
53       * 
54       * @return application descriptor
55       */
56      public ApplicationDescriptor getApplication(String id);
57  }