Class HttpBasicAuthType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.HttpBasicAuthType
-
public class HttpBasicAuthType extends Object
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p672351_="urn:jaxb.jvnet.org:plugin:inheritance" xmlns:p68930_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">Used to define the appropriate login information if access to the resource requires a login using the "Basic Authentication" method.</p>
Java class for HttpBasicAuthType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="HttpBasicAuthType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="userName" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description HttpBasicAuthType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPassword()<?StringgetUserName()<?booleanisSetPassword()booleanisSetUserName()voidsetPassword(String value)Sets the value of the password property.voidsetUserName(String value)Sets the value of the userName property.
-
-
-
Field Detail
-
userName
protected String userName
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p672351_="urn:jaxb.jvnet.org:plugin:inheritance" xmlns:p68930_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">Username if the URL requests an authentication of the "Basic Authentication" type.</p>
-
password
protected String password
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p672351_="urn:jaxb.jvnet.org:plugin:inheritance" xmlns:p68930_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">Password if the URL requests an authentication of the "Basic Authentication" type.</p>
-
-
Method Detail
-
getUserName
public String getUserName()
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p672351_="urn:jaxb.jvnet.org:plugin:inheritance" xmlns:p68930_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">Username if the URL requests an authentication of the "Basic Authentication" type.</p>
- Returns:
- possible object is
String
-
setUserName
public void setUserName(String value)
Sets the value of the userName property.- Parameters:
value- allowed object isString- See Also:
getUserName()
-
isSetUserName
public boolean isSetUserName()
-
getPassword
public String getPassword()
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p672351_="urn:jaxb.jvnet.org:plugin:inheritance" xmlns:p68930_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">Password if the URL requests an authentication of the "Basic Authentication" type.</p>
- Returns:
- possible object is
String
-
setPassword
public void setPassword(String value)
Sets the value of the password property.- Parameters:
value- allowed object isString- See Also:
getPassword()
-
isSetPassword
public boolean isSetPassword()
-
-