// 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.domains.enterprisemodel;
import com.metaboss.enterprise.bo.BOException;
import com.oldboss.framework.bo.BOEntityDomain;
public interface BOMetaBossDomain extends BOEntityDomain
{
/** Naming URL of the component */
public static final String COMPONENT_URL = "component:/com.metaboss.sdlctools.domains.enterprisemodel.BOMetaBossDomain";
/** Retrieves requested typetemplate object */
public BOTypetemplate getTypetemplate(String pTypetemplateRef) throws BOException;
/** Retrieves requested datatype object */
public BODatatype getDatatype(String pDatatypeRef) throws BOException;
/** Retrieves requested structure object */
public BOStructure getStructure(String pStructureRef) throws BOException;
/** Retrieves requested operation object */
public BOOperation getOperation(String pOperationRef) throws BOException;
/** Retrieves requested message object */
public BOMessage getMessage(String pMessageRef) throws BOException;
/** Retrieves requested domain object */
public BODomain getDomain(String pDomainRef) throws BOException;
/** Retrieves requested entity object */
public BOEntity getEntity(String pEntityRef) throws BOException;
/** Retrieves requested system object */
public BOSystem getSystem(String pSystemRef) throws BOException;
/** Retrieves requested servicemodule object. */
public BOServicemodule getServicemodule(String pServicemoduleRef) throws BOException;
/** Retrieves requested service object. */
public BOService getService(String pServiceRef) throws BOException;
// /** Retrieves requested service implementation object. */
// public BOServiceimplementation getServiceimplementation(String pServiceimplementationRef) throws BOException;
/** Retrieves requested association role object. */
public BOAssociationRole getAssociationRole(String pAssociationRoleRef) throws BOException;
/** Retrieves all defined enterprises */
public BOEnterpriseList getEnterprises() throws BOException;
/** Retrieves all public typetemplates */
public BOTypetemplateList getPublicTypetemplates() throws BOException;
/** Retrieves all public datatypes */
public BODatatypeList getPublicDatatypes() throws BOException;
}
|