01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.domainimplementationmodel;
02:
03: /**
04: * DomainMayBeImplementedOnRelationalStorage association proxy interface.
05: */
06: public interface DomainMayBeImplementedOnRelationalStorage extends
07: javax.jmi.reflect.RefAssociation {
08: /**
09: * Queries whether a link currently exists between a given pair of instance
10: * objects in the associations link set.
11: * @param domain Value of the first association end.
12: * @param relationalImplementations Value of the second association end.
13: * @return Returns true if the queried link exists.
14: */
15: public boolean exists(
16: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain domain,
17: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.domainimplementationmodel.DomainRelationalStorageDefinition relationalImplementations);
18:
19: /**
20: * Queries the instance object that is related to a particular instance object
21: * by a link in the current associations link set.
22: * @param relationalImplementations Required value of the second association
23: * end.
24: * @return Related object or <code>null</code> if none exists.
25: */
26: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain getDomain(
27: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.domainimplementationmodel.DomainRelationalStorageDefinition relationalImplementations);
28:
29: /**
30: * Queries the instance objects that are related to a particular instance
31: * object by a link in the current associations link set.
32: * @param domain Required value of the first association end.
33: * @return Collection of related objects.
34: */
35: public java.util.Collection getRelationalImplementations(
36: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain domain);
37:
38: /**
39: * Creates a link between the pair of instance objects in the associations
40: * link set.
41: * @param domain Value of the first association end.
42: * @param relationalImplementations Value of the second association end.
43: */
44: public boolean add(
45: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain domain,
46: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.domainimplementationmodel.DomainRelationalStorageDefinition relationalImplementations);
47:
48: /**
49: * Removes a link between a pair of instance objects in the current associations
50: * link set.
51: * @param domain Value of the first association end.
52: * @param relationalImplementations Value of the second association end.
53: */
54: public boolean remove(
55: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Domain domain,
56: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.domainimplementationmodel.DomainRelationalStorageDefinition relationalImplementations);
57: }
|