/src/com/microsoft/schemas/crm/_2007/webservices/TargetDeleteBulkOperation.java

http://javamscrm.codeplex.com · Java · 116 lines · 54 code · 28 blank · 34 comment · 0 complexity · 2c3b63b9b9ea168741ef1622fa285807 MD5 · raw file

  1. /*
  2. * XML Type: TargetDeleteBulkOperation
  3. * Namespace: http://schemas.microsoft.com/crm/2007/WebServices
  4. * Java type: com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation
  5. *
  6. * Automatically generated - do not modify.
  7. */
  8. package com.microsoft.schemas.crm._2007.webservices;
  9. /**
  10. * An XML TargetDeleteBulkOperation(@http://schemas.microsoft.com/crm/2007/WebServices).
  11. *
  12. * This is a complex type.
  13. */
  14. public interface TargetDeleteBulkOperation extends com.microsoft.schemas.crm._2007.webservices.TargetDelete
  15. {
  16. public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
  17. org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TargetDeleteBulkOperation.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sD410F7A3293D843D31E344CF6B343266").resolveHandle("targetdeletebulkoperationeee5type");
  18. /**
  19. * Gets the "EntityId" element
  20. */
  21. java.lang.String getEntityId();
  22. /**
  23. * Gets (as xml) the "EntityId" element
  24. */
  25. com.microsoft.wsdl.types.Guid xgetEntityId();
  26. /**
  27. * Sets the "EntityId" element
  28. */
  29. void setEntityId(java.lang.String entityId);
  30. /**
  31. * Sets (as xml) the "EntityId" element
  32. */
  33. void xsetEntityId(com.microsoft.wsdl.types.Guid entityId);
  34. /**
  35. * A factory class with static methods for creating instances
  36. * of this type.
  37. */
  38. public static final class Factory
  39. {
  40. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation newInstance() {
  41. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
  42. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation newInstance(org.apache.xmlbeans.XmlOptions options) {
  43. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
  44. /** @param xmlAsString the string value to parse */
  45. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
  46. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
  47. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
  48. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
  49. /** @param file the file from which to load an xml document */
  50. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  51. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
  52. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  53. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
  54. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  55. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
  56. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  57. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
  58. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  59. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
  60. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  61. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
  62. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  63. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
  64. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  65. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
  66. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
  67. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
  68. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
  69. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
  70. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
  71. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
  72. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
  73. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
  74. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  75. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
  76. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
  77. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  78. public static com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
  79. return (com.microsoft.schemas.crm._2007.webservices.TargetDeleteBulkOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
  80. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  81. 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 {
  82. return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
  83. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  84. 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 {
  85. return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
  86. private Factory() { } // No instance of this class allowed
  87. }
  88. }