RelatesToType.java revision c1350cf5bc50458ba79cc93ff9e0e5fe3f1aeeb0
0N/A//
6073N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
0N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
0N/A// Any modifications to this file will be lost upon recompilation of the source schema.
0N/A// Generated on: 2012.06.11 at 10:34:16 AM PDT
0N/A//
2362N/A
0N/A
2362N/Apackage com.sun.identity.wsfederation.jaxb.wsaddr;
0N/A
0N/A
0N/A/**
0N/A * Java content class for RelatesToType complex type.
0N/A * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/Users/allan/A-SVN/trunk/opensso/products/federation/library/xsd/wsfederation/ws-addr.xsd line 55)
0N/A * <p>
0N/A * <pre>
0N/A * &lt;complexType name="RelatesToType">
0N/A * &lt;simpleContent>
0N/A * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>anyURI">
0N/A * &lt;attribute name="RelationshipType" type="{http://www.w3.org/2005/08/addressing}RelationshipTypeOpenEnum" default="http://www.w3.org/2005/08/addressing/reply" />
2362N/A * &lt;/extension>
2362N/A * &lt;/simpleContent>
2362N/A * &lt;/complexType>
0N/A * </pre>
0N/A *
0N/A */
0N/Apublic interface RelatesToType {
0N/A
0N/A
0N/A /**
0N/A * Gets the value of the value property.
0N/A *
0N/A * @return
0N/A * possible object is
0N/A * {@link java.lang.String}
0N/A */
0N/A java.lang.String getValue();
0N/A
0N/A /**
0N/A * Sets the value of the value property.
0N/A *
0N/A * @param value
0N/A * allowed object is
0N/A * {@link java.lang.String}
0N/A */
0N/A void setValue(java.lang.String value);
0N/A
0N/A /**
0N/A * Gets the value of the relationshipType property.
0N/A *
0N/A * @return
0N/A * possible object is
2962N/A * {@link java.lang.String}
2962N/A * {@link java.lang.String}
0N/A */
0N/A java.lang.String getRelationshipType();
0N/A
0N/A /**
2702N/A * Sets the value of the relationshipType property.
2702N/A *
0N/A * @param value
0N/A * allowed object is
0N/A * {@link java.lang.String}
0N/A * {@link java.lang.String}
0N/A */
0N/A void setRelationshipType(java.lang.String value);
0N/A
0N/A}
0N/A