01: // THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
02: // CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
03: // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
04: // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
05: // OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
06: // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
07: // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
08: // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
09: // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
10: // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
11: // EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
12: // POSSIBILITY OF SUCH DAMAGE.
13: //
14: // Copyright 2000-2005 © Softaris Pty.Ltd. All Rights Reserved.
15: package com.metaboss.sdlctools.domains.enterprisemodel;
16:
17: import com.metaboss.enterprise.bo.BOException;
18: import com.oldboss.framework.bo.BOEntityDomain;
19:
20: public interface BOMetaBossDomain extends BOEntityDomain {
21: /** Naming URL of the component */
22: public static final String COMPONENT_URL = "component:/com.metaboss.sdlctools.domains.enterprisemodel.BOMetaBossDomain";
23:
24: /** Retrieves requested typetemplate object */
25: public BOTypetemplate getTypetemplate(String pTypetemplateRef)
26: throws BOException;
27:
28: /** Retrieves requested datatype object */
29: public BODatatype getDatatype(String pDatatypeRef)
30: throws BOException;
31:
32: /** Retrieves requested structure object */
33: public BOStructure getStructure(String pStructureRef)
34: throws BOException;
35:
36: /** Retrieves requested operation object */
37: public BOOperation getOperation(String pOperationRef)
38: throws BOException;
39:
40: /** Retrieves requested message object */
41: public BOMessage getMessage(String pMessageRef) throws BOException;
42:
43: /** Retrieves requested domain object */
44: public BODomain getDomain(String pDomainRef) throws BOException;
45:
46: /** Retrieves requested entity object */
47: public BOEntity getEntity(String pEntityRef) throws BOException;
48:
49: /** Retrieves requested system object */
50: public BOSystem getSystem(String pSystemRef) throws BOException;
51:
52: /** Retrieves requested servicemodule object. */
53: public BOServicemodule getServicemodule(String pServicemoduleRef)
54: throws BOException;
55:
56: /** Retrieves requested service object. */
57: public BOService getService(String pServiceRef) throws BOException;
58:
59: // /** Retrieves requested service implementation object. */
60: // public BOServiceimplementation getServiceimplementation(String pServiceimplementationRef) throws BOException;
61:
62: /** Retrieves requested association role object. */
63: public BOAssociationRole getAssociationRole(
64: String pAssociationRoleRef) throws BOException;
65:
66: /** Retrieves all defined enterprises */
67: public BOEnterpriseList getEnterprises() throws BOException;
68:
69: /** Retrieves all public typetemplates */
70: public BOTypetemplateList getPublicTypetemplates()
71: throws BOException;
72:
73: /** Retrieves all public datatypes */
74: public BODatatypeList getPublicDatatypes() throws BOException;
75: }
|