org.oma.protocols.mlp.svc_init.Pushaddr Maven / Gradle / Ivy
package org.oma.protocols.mlp.svc_init;
/**
* Schema fragment(s) for this class:
*
* <xs:element xmlns:ns="MLP_SVC_INIT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="pushaddr">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:url"/>
* <xs:element ref="ns:id" minOccurs="0"/>
* <xs:element ref="ns:pwd" minOccurs="0"/>
* </xs:sequence>
* </xs:complexType>
* </xs:element>
*
*/
public class Pushaddr
{
private Url url;
private Id id;
private Pwd pwd;
/**
* Get the 'url' element value.
*
* @return value
*/
public Url getUrl() {
return url;
}
/**
* Set the 'url' element value.
*
* @param url
*/
public void setUrl(Url url) {
this.url = url;
}
/**
* Get the 'id' element value.
*
* @return value
*/
public Id getId() {
return id;
}
/**
* Set the 'id' element value.
*
* @param id
*/
public void setId(Id id) {
this.id = id;
}
/**
* Get the 'pwd' element value.
*
* @return value
*/
public Pwd getPwd() {
return pwd;
}
/**
* Set the 'pwd' element value.
*
* @param pwd
*/
public void setPwd(Pwd pwd) {
this.pwd = pwd;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy