org.apache.ws.scout.uddi.FindRelatedBusinesses Maven / Gradle / Ivy
/*
* XML Type: find_relatedBusinesses
* Namespace: urn:uddi-org:api_v2
* Java type: org.apache.ws.scout.uddi.FindRelatedBusinesses
*
* Automatically generated - do not modify.
*/
package org.apache.ws.scout.uddi;
/**
* An XML find_relatedBusinesses(@urn:uddi-org:api_v2).
*
* This is a complex type.
*/
public interface FindRelatedBusinesses extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FindRelatedBusinesses.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s99222732EBF92B2912E4FFD882279A92").resolveHandle("findrelatedbusinesses5983type");
/**
* Gets the "findQualifiers" element
*/
org.apache.ws.scout.uddi.FindQualifiers getFindQualifiers();
/**
* True if has "findQualifiers" element
*/
boolean isSetFindQualifiers();
/**
* Sets the "findQualifiers" element
*/
void setFindQualifiers(org.apache.ws.scout.uddi.FindQualifiers findQualifiers);
/**
* Appends and returns a new empty "findQualifiers" element
*/
org.apache.ws.scout.uddi.FindQualifiers addNewFindQualifiers();
/**
* Unsets the "findQualifiers" element
*/
void unsetFindQualifiers();
/**
* Gets the "businessKey" element
*/
java.lang.String getBusinessKey();
/**
* Gets (as xml) the "businessKey" element
*/
org.apache.ws.scout.uddi.BusinessKey xgetBusinessKey();
/**
* Sets the "businessKey" element
*/
void setBusinessKey(java.lang.String businessKey);
/**
* Sets (as xml) the "businessKey" element
*/
void xsetBusinessKey(org.apache.ws.scout.uddi.BusinessKey businessKey);
/**
* Gets the "keyedReference" element
*/
org.apache.ws.scout.uddi.KeyedReference getKeyedReference();
/**
* True if has "keyedReference" element
*/
boolean isSetKeyedReference();
/**
* Sets the "keyedReference" element
*/
void setKeyedReference(org.apache.ws.scout.uddi.KeyedReference keyedReference);
/**
* Appends and returns a new empty "keyedReference" element
*/
org.apache.ws.scout.uddi.KeyedReference addNewKeyedReference();
/**
* Unsets the "keyedReference" element
*/
void unsetKeyedReference();
/**
* Gets the "generic" attribute
*/
java.lang.String getGeneric();
/**
* Gets (as xml) the "generic" attribute
*/
org.apache.xmlbeans.XmlString xgetGeneric();
/**
* Sets the "generic" attribute
*/
void setGeneric(java.lang.String generic);
/**
* Sets (as xml) the "generic" attribute
*/
void xsetGeneric(org.apache.xmlbeans.XmlString generic);
/**
* Gets the "maxRows" attribute
*/
int getMaxRows();
/**
* Gets (as xml) the "maxRows" attribute
*/
org.apache.xmlbeans.XmlInt xgetMaxRows();
/**
* True if has "maxRows" attribute
*/
boolean isSetMaxRows();
/**
* Sets the "maxRows" attribute
*/
void setMaxRows(int maxRows);
/**
* Sets (as xml) the "maxRows" attribute
*/
void xsetMaxRows(org.apache.xmlbeans.XmlInt maxRows);
/**
* Unsets the "maxRows" attribute
*/
void unsetMaxRows();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static org.apache.ws.scout.uddi.FindRelatedBusinesses newInstance() {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link XMLInputStream} */
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link XMLInputStream} */
public static org.apache.ws.scout.uddi.FindRelatedBusinesses parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (org.apache.ws.scout.uddi.FindRelatedBusinesses) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy