// THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
// CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
// BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
// OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
// OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Copyright 2000-2005 Softaris Pty.Ltd. All Rights Reserved.
package com.metaboss.sdlctools.services.metadatamanagement;
import com.metaboss.enterprise.bs.BSException;
/** This service offers a set of operations managing portion of metadata describing
* the storage for the domain. The domain storage definition allows to
* achieve model independence from brand of Database or even from it's technology
* (e.g. JDBC or not).
*/
public interface BSDomainStorageManagement
{
/** Naming URL of the component */
public static final String COMPONENT_URL = "component:/com.metaboss.sdlctools.services.metadatamanagement.BSDomainStorageManagement";
/** Updates metadata describing domain storage at the particular technology.
* @param pStorageTechnologyRef reference of the storage technology to use
* @param pDomainRef reference of the domain to generate storage for
* @param pReferenceModelName opetional name (can be null) of the loaded reference model. If
* this parameter is given, the tool will look for the existing aliases, name overrides etc in the reference model.
* This feature allows to preserve automatically generated names across releases. */
public void updateMetadataForDomain(String pStorageTechnologyRef, String pDomainRef, String pReferenceModelName) throws BSException;
}
|