From 410825aceb74caf4b41b7420fc57728487608b9e Mon Sep 17 00:00:00 2001 From: ddunne Date: Tue, 18 May 2010 23:11:31 +0000 Subject: events --- .../jaxb/resMessages.xsd | 4 + .../event/res/msgs/RemoteBasicGuidRelation1.java | 89 +++++++++++++++++++++- .../event/res/AttributeEventModificationType.java | 4 + 3 files changed, 95 insertions(+), 2 deletions(-) (limited to 'plugins/org.eclipse.osee.framework.messaging.event.res') diff --git a/plugins/org.eclipse.osee.framework.messaging.event.res/jaxb/resMessages.xsd b/plugins/org.eclipse.osee.framework.messaging.event.res/jaxb/resMessages.xsd index 0988ddcc8f5..80ba1037cf4 100644 --- a/plugins/org.eclipse.osee.framework.messaging.event.res/jaxb/resMessages.xsd +++ b/plugins/org.eclipse.osee.framework.messaging.event.res/jaxb/resMessages.xsd @@ -52,9 +52,13 @@ + + + + diff --git a/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidRelation1.java b/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidRelation1.java index 7e8172cd0d3..76d52c3c3fe 100644 --- a/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidRelation1.java +++ b/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidRelation1.java @@ -2,7 +2,7 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2010.05.13 at 02:00:51 PM MST +// Generated on: 2010.05.17 at 02:18:17 PM MST // @@ -28,9 +28,13 @@ import org.eclipse.osee.framework.messaging.event.res.RemoteEvent; * <element name="modTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="branchGuid" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="relTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/> + * <element name="relationId" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="gammaId" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="artAId" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="artA" type="{}RemoteBasicGuidArtifact1"/> + * <element name="artBId" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="artB" type="{}RemoteBasicGuidArtifact1"/> + * <element name="rationale" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> @@ -44,9 +48,13 @@ import org.eclipse.osee.framework.messaging.event.res.RemoteEvent; "modTypeGuid", "branchGuid", "relTypeGuid", + "relationId", "gammaId", + "artAId", "artA", - "artB" + "artBId", + "artB", + "rationale" }) public class RemoteBasicGuidRelation1 extends RemoteEvent @@ -58,11 +66,16 @@ public class RemoteBasicGuidRelation1 protected String branchGuid; @XmlElement(required = true) protected String relTypeGuid; + protected int relationId; protected int gammaId; + protected int artAId; @XmlElement(required = true) protected RemoteBasicGuidArtifact1 artA; + protected int artBId; @XmlElement(required = true) protected RemoteBasicGuidArtifact1 artB; + @XmlElement(required = true) + protected String rationale; /** * Gets the value of the modTypeGuid property. @@ -136,6 +149,22 @@ public class RemoteBasicGuidRelation1 this.relTypeGuid = value; } + /** + * Gets the value of the relationId property. + * + */ + public int getRelationId() { + return relationId; + } + + /** + * Sets the value of the relationId property. + * + */ + public void setRelationId(int value) { + this.relationId = value; + } + /** * Gets the value of the gammaId property. * @@ -152,6 +181,22 @@ public class RemoteBasicGuidRelation1 this.gammaId = value; } + /** + * Gets the value of the artAId property. + * + */ + public int getArtAId() { + return artAId; + } + + /** + * Sets the value of the artAId property. + * + */ + public void setArtAId(int value) { + this.artAId = value; + } + /** * Gets the value of the artA property. * @@ -176,6 +221,22 @@ public class RemoteBasicGuidRelation1 this.artA = value; } + /** + * Gets the value of the artBId property. + * + */ + public int getArtBId() { + return artBId; + } + + /** + * Sets the value of the artBId property. + * + */ + public void setArtBId(int value) { + this.artBId = value; + } + /** * Gets the value of the artB property. * @@ -200,4 +261,28 @@ public class RemoteBasicGuidRelation1 this.artB = value; } + /** + * Gets the value of the rationale property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRationale() { + return rationale; + } + + /** + * Sets the value of the rationale property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRationale(String value) { + this.rationale = value; + } + } diff --git a/plugins/org.eclipse.osee.framework.messaging.event.res/src/org/eclipse/osee/framework/messaging/event/res/AttributeEventModificationType.java b/plugins/org.eclipse.osee.framework.messaging.event.res/src/org/eclipse/osee/framework/messaging/event/res/AttributeEventModificationType.java index 855616b2f96..3d010293bbc 100644 --- a/plugins/org.eclipse.osee.framework.messaging.event.res/src/org/eclipse/osee/framework/messaging/event/res/AttributeEventModificationType.java +++ b/plugins/org.eclipse.osee.framework.messaging.event.res/src/org/eclipse/osee/framework/messaging/event/res/AttributeEventModificationType.java @@ -67,4 +67,8 @@ public class AttributeEventModificationType { public String getGuid() { return guid; } + + public String toString() { + return modificationType.name(); + } } -- cgit v1.2.3