null
36 | */
37 | String getTypeName();
38 |
39 | /**
40 | *
41 | * @return the item value of a {@link ClassificationSchemeItem}. If
42 | * attribute does not exist return null
43 | */
44 | String getItemValue();
45 | }
46 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/ClassificationSchemeItemRelationship.java:
--------------------------------------------------------------------------------
1 | //TODO: ClassificationSchemeItemRelationship created by Classification scheme, how to relate items other than constructor?
2 | package tr.com.srdc.mdr.core.api.composite;
3 |
4 | import tr.com.srdc.mdr.core.api.MDRNode;
5 | import tr.com.srdc.mdr.core.model.iso11179.composite.ClassificationSchemeItemRelationshipResource;
6 |
7 | /**
8 | *
9 | * A Classification Scheme Item Relationship associates two or more
10 | * Classification Scheme Items within a Classification Scheme. Such
11 | * relationships serve to assist navigation through a large number of
12 | * Classification Scheme Items.
13 | *
14 | * @author anil
15 | *
16 | */
17 | public interface ClassificationSchemeItemRelationship extends MDRNode {
18 |
19 | @Override
20 | /**
21 | * @return the {@link ClassificationSchemeItemRelationshipResource} version this instance.
22 | */
23 | ClassificationSchemeItemRelationshipResource asMDRResource();
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/ConceptualDomainRelationship.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import tr.com.srdc.mdr.core.api.MDRNode;
4 | import tr.com.srdc.mdr.core.api.ai.ConceptualDomain;
5 | import tr.com.srdc.mdr.core.model.iso11179.composite.ConceptualDomainRelationshipResource;
6 |
7 | /**
8 | * A {@link ConceptualDomain} may be associated with other
9 | * {@link ConceptualDomain}s, via the Conceptual Domain Relationship. The nature
10 | * of the relationship is described using the conceptual domain relationship
11 | * type description. Through the Conceptual Domain Relationship, a
12 | * {@link ConceptualDomain} may be composed of other {@link ConceptualDomain} or
13 | * may be a member (component) of a larger {@link ConceptualDomain}.
14 | *
15 | * @author anil
16 | *
17 | */
18 | public interface ConceptualDomainRelationship extends MDRNode {
19 |
20 | @Override
21 | /**
22 | * @return the {@link ConceptualDomainRelationshipResource} version this instance.
23 | */
24 | ConceptualDomainRelationshipResource asMDRResource();
25 |
26 | }
27 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/Contact.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import tr.com.srdc.mdr.core.api.MDRNode;
4 | import tr.com.srdc.mdr.core.model.iso11179.composite.ContactResource;
5 |
6 | /**
7 | * The composite datatype Contact is used to specify the contact information for
8 | * registrar contact, stewardship contact and submission contact.
9 | *
10 | * @author anil
11 | *
12 | */
13 | public interface Contact extends MDRNode {
14 |
15 | @Override
16 | /**
17 | * @return the {@link ContactResource} version this instance.
18 | */
19 | ContactResource asMDRResource();
20 |
21 | /**
22 | * @return the name of the contact
23 | */
24 | String getName();
25 |
26 | /**
27 | *
28 | * @return the title of a {@link Contact}. If the attribute does not exist
29 | * return null
30 | */
31 | String getTitle();
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/DataElementConceptRelationship.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import tr.com.srdc.mdr.core.api.MDRNode;
4 | import tr.com.srdc.mdr.core.api.ai.DataElementConcept;
5 | import tr.com.srdc.mdr.core.model.iso11179.composite.DataElementConceptRelationshipResource;
6 |
7 | /**
8 | * A {@link DataElementConcept} may be associated with other
9 | * {@link DataElementConcept}s, via the Data Element Concept Relationship. The
10 | * nature of the relationship is described using the data element concept
11 | * relationship type description.
12 | *
13 | * @author anil
14 | *
15 | */
16 | public interface DataElementConceptRelationship extends MDRNode {
17 |
18 | @Override
19 | /**
20 | * @return the {@link DataElementConceptRelationshipResource} version this instance.
21 | */
22 | DataElementConceptRelationshipResource asMDRResource();
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/DataElementDerivation.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import java.util.List;
4 |
5 | import tr.com.srdc.mdr.core.api.MDRNode;
6 | import tr.com.srdc.mdr.core.api.ai.DataElement;
7 | import tr.com.srdc.mdr.core.api.ai.DerivationRule;
8 | import tr.com.srdc.mdr.core.model.MDRException;
9 | import tr.com.srdc.mdr.core.model.iso11179.composite.DataElementDerivationResource;
10 |
11 |
12 |
13 | /**
14 | * A Data Element Derivation is the application of a Derivation Rule to one or
15 | * more input Data Elements, to derive one or more output Data Elements.
16 | *
17 | * @author anil
18 | *
19 | */
20 | public interface DataElementDerivation extends MDRNode {
21 |
22 | @Override
23 | /**
24 | * @return the {@link DataElementDerivationResource} version this instance.
25 | */
26 | DataElementDerivationResource asMDRResource();
27 |
28 | /**
29 | *
30 | * @return {@link DerivationRule} applied to this
31 | * {@link DataElementDerivation}
32 | */
33 | DerivationRule getDerivationRule();
34 |
35 | /**
36 | *
37 | * @return the unmodifiable list of {@link DataElement} which is input to
38 | * this {@link DataElementDerivation}
39 | * @throws MDRException
40 | */
41 | Listnull
41 | */
42 | Country getCountry();
43 |
44 | }
45 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/LanguageSection.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import tr.com.srdc.mdr.core.api.MDRNode;
4 | import tr.com.srdc.mdr.core.model.iso11179.composite.LanguageSectionResource;
5 |
6 | /**
7 | *
8 | * If a registry supports multiple languages, the language(s) associated with
9 | * particular names and definitions need to be identified. A Language Section
10 | * partitions a Terminological Entry by Language. A language section language
11 | * identifier identifies the Language associated with a particular Language
12 | * Section. A Language Section contains zero or more Designations. A Language
13 | * Section contains zero or more Definitions.
14 | *
15 | * @author anil
16 | *
17 | */
18 | public interface LanguageSection extends MDRNode {
19 |
20 | @Override
21 | /**
22 | * @return the {@link LanguageSectionResource} version this instance.
23 | */
24 | LanguageSectionResource asMDRResource();
25 |
26 | }
27 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/Organization.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import tr.com.srdc.mdr.core.api.MDRNode;
4 | import tr.com.srdc.mdr.core.model.iso11179.composite.OrganizationResource;
5 |
6 | public interface Organization extends MDRNode {
7 |
8 | @Override
9 | /**
10 | * @return the {@link OrganizationResource} version this instance.
11 | */
12 | OrganizationResource asMDRResource();
13 |
14 | String getName();
15 |
16 | /**
17 | *
18 | * @return the mail address of {@link Organization}. If the attribute does
19 | * not exist return null
20 | */
21 | String getMailAddress();
22 |
23 | /**
24 | *
25 | * @param identifier
26 | * @return the {@link ReferenceDocument} provided by this
27 | * {@link Organization}
28 | */
29 | ReferenceDocument createReferenceDocument(String identifier);
30 |
31 | /**
32 | *
33 | * @param identifier
34 | * @param typeDescription
35 | * Optional.
36 | * @param languageIdentification
37 | * Optional.
38 | * @param title
39 | * Optional.
40 | * @return the {@link ReferenceDocument} provided by this
41 | * {@link Organization}
42 | */
43 | ReferenceDocument createReferenceDocument(String identifier,
44 | String typeDescription,
45 | LanguageIdentification languageIdentification, String title);
46 |
47 | }
48 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/PermissibleValue.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import java.util.Calendar;
4 |
5 | import tr.com.srdc.mdr.core.api.MDRNode;
6 | import tr.com.srdc.mdr.core.model.iso11179.composite.PermissibleValueResource;
7 | import tr.com.srdc.mdr.core.model.iso11179.composite.ValueMeaningResource;
8 | import tr.com.srdc.mdr.core.model.iso11179.composite.ValueResource;
9 |
10 |
11 |
12 | /**
13 | * A Permissible Value is an expression of a Value Meaning within an Enumerated
14 | * Value Domain. It is one of a set of such values that comprises an Enumerated
15 | * Value Domain. Each Permissible Value is associated with a Value Meaning.
16 | *
17 | * @author anil
18 | *
19 | */
20 | public interface PermissibleValue extends MDRNode {
21 |
22 | @Override
23 | /**
24 | * @return the {@link PermissibleValueResource} version this instance.
25 | */
26 | PermissibleValueResource asMDRResource();
27 |
28 | Calendar getBeginDate();
29 |
30 | /**
31 | *
32 | * @return the end date of {@link PermissibleValue}. If the attribute does
33 | * not exist return null
34 | */
35 | Calendar getEndDate();
36 |
37 | /**
38 | *
39 | * @return the value meaning identifier of a {@link ValueMeaningResource}
40 | * used in this {@link PermissibleValue}
41 | */
42 | String getValueMeaningIdentifier();
43 |
44 | /**
45 | *
46 | * @return the value item of a {@link ValueResource} used in this
47 | * {@link PermissibleValue}
48 | */
49 | String getValueItem();
50 |
51 | /**
52 | *
53 | * @return the value meaning description of a {@link ValueMeaningResource}
54 | * used in this {@link PermissibleValue}. If the attribute does not
55 | * exist return null
56 | */
57 | String getValueMeaningDescription();
58 | }
59 |
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/api/composite/ReferenceDocument.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.api.composite;
2 |
3 | import java.util.List;
4 |
5 | import tr.com.srdc.mdr.core.api.MDRNode;
6 | import tr.com.srdc.mdr.core.model.MDRException;
7 | import tr.com.srdc.mdr.core.model.iso11179.composite.ReferenceDocumentResource;
8 |
9 |
10 |
11 | /**
12 | * An Administered Item may be described by one or more Reference Documents. For
13 | * each Reference Document, the Organization that originated the Reference
14 | * Document must be identified.
15 | *
16 | * @author anil
17 | *
18 | */
19 | public interface ReferenceDocument extends MDRNode {
20 |
21 | @Override
22 | /**
23 | * @return the {@link ReferenceDocumentResource} version this instance.
24 | */
25 | ReferenceDocumentResource asMDRResource();
26 |
27 | String getIdentifier();
28 |
29 | /**
30 | *
31 | * @return the type description of {@link ReferenceDocument}. If the
32 | * attribute does not exist return null
33 | */
34 | String getTypeDescription();
35 |
36 | /**
37 | *
38 | * @return the unmodifiable list of {@link LanguageIdentification} of
39 | * {@link ReferenceDocument}.
40 | * @throws MDRException
41 | */
42 | Listnull
49 | */
50 | String getTitle();
51 |
52 | /**
53 | *
54 | * @return the unmodifiable list of {@link Organization} providing this
55 | * {@link ReferenceDocument}
56 | * @throws MDRException
57 | */
58 | Listnull
throws
43 | * {@link IllegalArgumentException}
44 | */
45 | void addExemplifyingExemplification(
46 | DataElementResource exemplifyingExemplification);
47 |
48 | /**
49 | * removes {@link Vocabulary#exemplifyingExemplification} with given value
50 | *
51 | * @param exemplifyingExemplification
52 | * there should be at least 1 value of the property, if try to
53 | * remove all, throws {@link IllegalArgumentException}
54 | */
55 | void removeExemplifyingExemplification(
56 | DataElementResource exemplifyingExemplification);
57 |
58 | /**
59 | *
60 | * @return List of all {@link Vocabulary#exemplifyingExemplification}
61 | * property values
62 | * @throws MDRException
63 | */
64 | Listnull
, removes property
38 | */
39 | void setDatatypeDescription(String datatypeDescription);
40 |
41 | /**
42 | *
43 | * @return value of {@link Vocabulary#datatypeDescription} property,null
if such property does not exist
45 | */
46 | String getDatatypeDescription();
47 |
48 | /**
49 | * sets {@link Vocabulary#datatypeSchemeReference} property with given value
50 | *
51 | * @param datatypeSchemeReference
52 | */
53 | void setDatatypeSchemeReference(String datatypeSchemeReference);
54 |
55 | /**
56 | *
57 | * @return value of {@link Vocabulary#datatypeSchemeReference} property
58 | */
59 | String getDatatypeSchemeReference();
60 |
61 | /**
62 | * sets {@link Vocabulary#datatypeAnnotation} proprety with given value
63 | *
64 | * @param datatypeAnnotation
65 | * if given null
, removes property
66 | */
67 | void setDatatypeAnnotation(String datatypeAnnotation);
68 |
69 | /**
70 | *
71 | * @return value of {@link Vocabulary#datatypeAnnotation} property,null
if such property does not exist
73 | */
74 | String getDatatypeAnnotation();
75 |
76 | }
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/model/iso11179/composite/ItemIdentifierResource.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.model.iso11179.composite;
2 |
3 | import tr.com.srdc.mdr.core.model.MDRResource;
4 | import tr.com.srdc.mdr.core.model.Vocabulary;
5 |
6 | /**
7 | * The composite data type Item Identifier is used to specify the unique
8 | * identifier for an Administered Item.
9 | *
10 | * @author anil
11 | *
12 | */
13 | public interface ItemIdentifierResource extends MDRResource {
14 |
15 | /**
16 | * Method for setting the {@link RegistrationAuthorityIdentifierResource} for
17 | * {@link ItemIdentifierResource}.
18 | *
19 | * @param itemRegistrationAuthorityIdentifier
20 | */
21 | void setItemRegistrationAuthorityIdentifier(
22 | RegistrationAuthorityIdentifierResource itemRegistrationAuthorityIdentifier);
23 |
24 | /**
25 | * Method for getting the {@link RegistrationAuthorityIdentifierResource} of
26 | * {@link ItemIdentifierResource}.
27 | *
28 | * @return {@link RegistrationAuthorityIdentifierResource}
29 | */
30 | RegistrationAuthorityIdentifierResource getItemRegistrationAuthorityIdentifier();
31 |
32 | /**
33 | * Method for setting the {@link Vocabulary#dataIdentifier} for
34 | * {@link ItemIdentifierResource}.
35 | *
36 | * @param dataIdentifier
37 | */
38 | void setDataIdentifier(String dataIdentifier);
39 |
40 | /**
41 | * Method for getting the {@link Vocabulary#dataIdentifier} of
42 | * {@link ItemIdentifierResource}.
43 | *
44 | * @return {@link Vocabulary#dataIdentifier}
45 | */
46 | String getDataIdentifier();
47 |
48 | /**
49 | * Method for setting the {@link Vocabulary#version} for
50 | * {@link ItemIdentifierResource}.
51 | *
52 | * @param version
53 | */
54 | void setVersion(String version);
55 |
56 | /**
57 | * Method for getting the {@link Vocabulary#version} of
58 | * {@link ItemIdentifierResource}.
59 | *
60 | * @return {@link Vocabulary#version}
61 | */
62 | String getVersion();
63 |
64 | }
--------------------------------------------------------------------------------
/core/src/main/java/tr/com/srdc/mdr/core/model/iso11179/composite/LanguageIdentificationResource.java:
--------------------------------------------------------------------------------
1 | package tr.com.srdc.mdr.core.model.iso11179.composite;
2 |
3 | import tr.com.srdc.mdr.core.api.composite.LanguageIdentification;
4 | import tr.com.srdc.mdr.core.impl.composite.LanguageIdentificationImpl;
5 | import tr.com.srdc.mdr.core.model.MDRResource;
6 | import tr.com.srdc.mdr.core.model.Vocabulary;
7 | import tr.com.srdc.mdr.core.util.Country;
8 | import tr.com.srdc.mdr.core.util.Language;
9 |
10 | /**
11 | * The composite data type to represent a Language Identification together with
12 | * the language code and country code. Java class for ContentModelType complex type. 12 | * 13 | *
The following schema fragment specifies the expected content contained within this class. 14 | * 15 | *
16 | * <complexType name="ContentModelType"> 17 | * <complexContent> 18 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 19 | * <sequence> 20 | * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> 21 | * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> 22 | * </sequence> 23 | * </restriction> 24 | * </complexContent> 25 | * </complexType> 26 | *27 | * 28 | * 29 | */ 30 | @XmlAccessorType(XmlAccessType.FIELD) 31 | @XmlType(name = "ContentModelType", propOrder = { 32 | "id", 33 | "name" 34 | }) 35 | public class ContentModelType { 36 | 37 | @XmlElement(required = true) 38 | protected String id; 39 | @XmlElement(required = true) 40 | protected String name; 41 | 42 | /** 43 | * Gets the value of the id property. 44 | * 45 | * @return 46 | * possible object is 47 | * {@link String } 48 | * 49 | */ 50 | public String getId() { 51 | return id; 52 | } 53 | 54 | /** 55 | * Sets the value of the id property. 56 | * 57 | * @param value 58 | * allowed object is 59 | * {@link String } 60 | * 61 | */ 62 | public void setId(String value) { 63 | this.id = value; 64 | } 65 | 66 | /** 67 | * Gets the value of the name property. 68 | * 69 | * @return 70 | * possible object is 71 | * {@link String } 72 | * 73 | */ 74 | public String getName() { 75 | return name; 76 | } 77 | 78 | /** 79 | * Sets the value of the name property. 80 | * 81 | * @param value 82 | * allowed object is 83 | * {@link String } 84 | * 85 | */ 86 | public void setName(String value) { 87 | this.name = value; 88 | } 89 | 90 | } 91 | -------------------------------------------------------------------------------- /dex/src/main/java/ihe/qrph/dex/_2013/DataElementExchangePortType.java: -------------------------------------------------------------------------------- 1 | package ihe.qrph.dex._2013; 2 | 3 | import javax.jws.WebMethod; 4 | import javax.jws.WebParam; 5 | import javax.jws.WebResult; 6 | import javax.jws.WebService; 7 | import javax.jws.soap.SOAPBinding; 8 | import javax.xml.bind.annotation.XmlSeeAlso; 9 | 10 | /** 11 | * This class was generated by Apache CXF 2.7.5 12 | * 2013-07-31T17:14:40.927+03:00 13 | * Generated source version: 2.7.5 14 | * 15 | */ 16 | @WebService(targetNamespace = "urn:ihe:qrph:dex:2013", name = "DataElementExchangePortType") 17 | @XmlSeeAlso({ObjectFactory.class}) 18 | @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) 19 | public interface DataElementExchangePortType { 20 | 21 | @WebResult(name = "RetrieveDataElementListResponse", targetNamespace = "urn:ihe:qrph:dex:2013", partName = "body") 22 | @WebMethod(operationName = "RetrieveDataElementList", action = "urn:ihe:qrph:dex:2013:RetrieveDataElementList") 23 | public RetrieveDataElementListResponseType retrieveDataElementList( 24 | @WebParam(partName = "body", name = "RetrieveDataElementListRequest", targetNamespace = "urn:ihe:qrph:dex:2013") 25 | RetrieveDataElementListRequestType body 26 | ); 27 | 28 | @WebResult(name = "RetrieveMetadataResponse", targetNamespace = "urn:ihe:qrph:dex:2013", partName = "body") 29 | @WebMethod(operationName = "RetrieveMetadata", action = "urn:ihe:qrph:dex:2013:RetrieveMetadata") 30 | public RetrieveMetadataResponseType retrieveMetadata( 31 | @WebParam(partName = "body", name = "RetrieveMetadataRequest", targetNamespace = "urn:ihe:qrph:dex:2013") 32 | RetrieveMetadataRequestType body 33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /dex/src/main/java/ihe/qrph/dex/_2013/RetrieveMetadataResponseType.java: -------------------------------------------------------------------------------- 1 | 2 | package ihe.qrph.dex._2013; 3 | 4 | import javax.xml.bind.annotation.XmlAccessType; 5 | import javax.xml.bind.annotation.XmlAccessorType; 6 | import javax.xml.bind.annotation.XmlElement; 7 | import javax.xml.bind.annotation.XmlType; 8 | 9 | 10 | /** 11 | *
Java class for RetrieveMetadataResponseType complex type. 12 | * 13 | *
The following schema fragment specifies the expected content contained within this class. 14 | * 15 | *
16 | * <complexType name="RetrieveMetadataResponseType"> 17 | * <complexContent> 18 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 19 | * <sequence> 20 | * <element name="DataElement" type="{urn:ihe:qrph:dex:2013}DataElementType"/> 21 | * </sequence> 22 | * </restriction> 23 | * </complexContent> 24 | * </complexType> 25 | *26 | * 27 | * 28 | */ 29 | @XmlAccessorType(XmlAccessType.FIELD) 30 | @XmlType(name = "RetrieveMetadataResponseType", propOrder = { 31 | "dataElement" 32 | }) 33 | public class RetrieveMetadataResponseType { 34 | 35 | @XmlElement(name = "DataElement", required = true) 36 | protected DataElementType dataElement; 37 | 38 | /** 39 | * Gets the value of the dataElement property. 40 | * 41 | * @return 42 | * possible object is 43 | * {@link DataElementType } 44 | * 45 | */ 46 | public DataElementType getDataElement() { 47 | return dataElement; 48 | } 49 | 50 | /** 51 | * Sets the value of the dataElement property. 52 | * 53 | * @param value 54 | * allowed object is 55 | * {@link DataElementType } 56 | * 57 | */ 58 | public void setDataElement(DataElementType value) { 59 | this.dataElement = value; 60 | } 61 | 62 | } 63 | -------------------------------------------------------------------------------- /dex/src/main/java/ihe/qrph/dex/_2013/package-info.java: -------------------------------------------------------------------------------- 1 | @javax.xml.bind.annotation.XmlSchema(namespace = "urn:ihe:qrph:dex:2013", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) 2 | package ihe.qrph.dex._2013; 3 | -------------------------------------------------------------------------------- /lib/eu/salusproject/security-privacy.authentication/1.0.0-os/_maven.repositories: -------------------------------------------------------------------------------- 1 | #NOTE: This is an internal implementation file, its format can be changed without prior notice. 2 | #Mon Jun 09 09:20:23 EEST 2014 3 | security-privacy.authentication-1.0.0-os.pom>in-project-triplestore= 4 | security-privacy.authentication-1.0.0-os.jar>in-project-triplestore= 5 | -------------------------------------------------------------------------------- /lib/eu/salusproject/security-privacy.authentication/1.0.0-os/_remote.repositories: -------------------------------------------------------------------------------- 1 | #NOTE: This is an Aether internal implementation file, its format can be changed without prior notice. 2 | #Mon Jun 09 09:47:55 EEST 2014 3 | security-privacy.authentication-1.0.0-os.pom>= 4 | security-privacy.authentication-1.0.0-os-sources.jar>= 5 | security-privacy.authentication-1.0.0-os.jar>= 6 | -------------------------------------------------------------------------------- /lib/eu/salusproject/security-privacy.authentication/1.0.0-os/security-privacy.authentication-1.0.0-os-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srdc/semanticMDR/8b61546cf183f09279bee37ed1b8b06f972131e3/lib/eu/salusproject/security-privacy.authentication/1.0.0-os/security-privacy.authentication-1.0.0-os-sources.jar -------------------------------------------------------------------------------- /lib/eu/salusproject/security-privacy.authentication/1.0.0-os/security-privacy.authentication-1.0.0-os.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srdc/semanticMDR/8b61546cf183f09279bee37ed1b8b06f972131e3/lib/eu/salusproject/security-privacy.authentication/1.0.0-os/security-privacy.authentication-1.0.0-os.jar -------------------------------------------------------------------------------- /lib/eu/salusproject/security-privacy.authentication/1.0.0-os/security-privacy.authentication-1.0.0-os.pom: -------------------------------------------------------------------------------- 1 |
4 | 5 |
The UML metamodel of Embarcardero Describe 6 is a mixture of UML1.4, 2.0, 6 | and proprietary extensions. Describe stores its models in *.etd files, 7 | which are XMI files. Although Describe specifies XMI version 8 | 2.0 in its output files, the XMI files actually follow the XMI 1.1/1.2 9 | production rules.
10 | 11 |The project files in this archive provide a meta model definition, 12 | XMI transformations, and metric and rules definitions which take all 13 | of these idiosyncracies into account.
14 | 15 |Contents
16 |File | Description |
---|---|
metamodel_describe6.xml | Metamodel for Describe 6 |
xmiTrans_describe6.xml | XMI transformation for Describe's *.etd files |
metrics_describe6.xml | Metric definitions |
Revision History
24 | 25 |4 | 5 |
This archive provides an XMI transformation file for 6 | the SDMetrics default metamodel 7 | for UML1.x and XMI 1.2 files saved by Enterprise Architect.
8 | 9 |SDMetrics' default XMI transformations expect all model elements in 10 | the XMI file to have and XMI ID. Enterprise Architect does not 11 | provide XMI IDs for all model elements - this specialized 12 | transformation file accounts for this.
13 | 14 |Contents
15 | 16 |File | Description |
---|---|
xmiTransEA1_1.xml | XMI transformation for XMI 1.2 files saved by Enterprise Architect |
Revision History
23 | 24 |5 | 6 |
Metamodel, XMI transformations and metric definitions for 7 | Gentleware Poseidon for UML V4.0 and V4.1.
8 | 9 |Poseidon 4 uses the UML2.0 metamodel for statechart diagrams, 10 | sequence diagrams, and activity diagrams. The other diagram types 11 | still use a UML1.x meta model, in particular collaboration diagrams 12 | still use UML1.x objects, links, and stimuli. Other peculiarities 13 | of the XMI exporter include:
14 | 15 |The XMI transformation file takes these details into account.
32 | 33 |Contents
34 | 35 |File | Description |
---|---|
metamodel_poseidon4.xml | Metamodel for Poseidon 4 |
xmiTrans_poseidon4.xml | XMI transformation for Poseidon 4 metamodel |
metrics_poseidon4.xml | Metric definitions for Poseidon 4 |
Revision History
43 | 44 |12 | | Name | 13 |Definition | 14 |Dimensionality | 15 |Enumerated | 16 |17 | |
---|
11 | | Name | 12 |Definition | 13 | 14 |
---|
13 | | Name | 14 |Definition | 15 |Property Name | 16 |17 | |
---|
13 | | Name | 14 |Definition | 15 |16 | |
---|
Value Meaning | 5 |Value | 6 |
---|
4 | 5 |
6 | 7 | 8 | Show All Parameters 9 | 10 | 11 |Name | 6 |Definition | 7 |Registration Status | 8 |Administrative Status | 9 |Administrative Note | 10 |Explanatory Comment | 11 |
---|
Name | 7 |Definition | 8 |Context | 9 |
---|