1 /* 2 * Copyright 2012-2013 smartics, Kronseder & Reiner GmbH 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 package de.smartics.properties.api.config.domain; 17 18 import java.io.Serializable; 19 20 /** 21 * Provides management access to the serializable configuration properties. 22 * Allows to add properties and other functions not related with accessing 23 * property values. 24 * <p> 25 * The serializability does not necessarily imply that the values are stored in 26 * a serialized form. It is more likely that the values can be retrieved from 27 * the runtime after deserialization. 28 * </p> 29 * 30 * @impl This interface is intended to be implemented by service providers. API 31 * users are intended to us this interface to access properties. For 32 * details on creating instances of classes implementing this interface 33 * please refer to {@link de.smartics.properties.api.config}. 34 */ 35 public interface SerializableConfigurationPropertiesManagement extends 36 SerializableConfigurationProperties, ConfigurationPropertiesManagement, 37 Serializable 38 { 39 // ********************************* Fields ********************************* 40 41 // --- constants ------------------------------------------------------------ 42 43 // ****************************** Initializer ******************************* 44 45 // ****************************** Inner Classes ***************************** 46 47 // ********************************* Methods ******************************** 48 49 // --- get&set -------------------------------------------------------------- 50 51 // --- business ------------------------------------------------------------- 52 53 // --- object basics -------------------------------------------------------- 54 55 // --- object basics -------------------------------------------------------- 56 57 }