View Javadoc
1   /* ***************************************************************************
2    * Copyright (c) 2008 Brabenetz Harald, Austria.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   * 
16   *****************************************************************************/
17  
18  package org.settings4j;
19  
20  
21  /**
22   * Some Constants like the Return Values (success or not) of Connectors.set*(...) Methods. 
23   * 
24   * @author Harald.Brabenetz
25   *
26   */
27  public final class Constants {
28  
29      /** Hide Constructor.*/
30      private Constants() {
31          super();
32      }
33  
34      /**
35       * Return value for:<br />
36       * {@link org.settings4j.connector.JNDIConnector#setObject(String, Object)}.
37       * <br />
38       * If Settings is not possible.
39       */
40      public static final int SETTING_NOT_POSSIBLE = 0;
41      
42      /**
43       * Return value for:<br />
44       * {@link org.settings4j.connector.JNDIConnector#setObject(String, Object)}.
45       * <br />
46       * if Setting was successful: The value for the given key was replaced.
47       */
48      public static final int SETTING_SUCCESS = 1;
49  }