/projects/sharepoint-proto/source/java/com/google/enterprise/connector/sharepoint/generated/webs/GetCustomizedPageStatus.java

http://google-enterprise-connector-manager.googlecode.com/ · Java · 120 lines · 78 code · 16 blank · 26 comment · 14 complexity · c625bd3c1e6a74cf5fe17b50fa0f4b7a MD5 · raw file

  1. /**
  2. * GetCustomizedPageStatus.java
  3. *
  4. * This file was auto-generated from WSDL
  5. * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
  6. */
  7. package com.google.enterprise.connector.sharepoint.generated.webs;
  8. public class GetCustomizedPageStatus implements java.io.Serializable {
  9. private java.lang.String fileUrl;
  10. public GetCustomizedPageStatus() {
  11. }
  12. public GetCustomizedPageStatus(
  13. java.lang.String fileUrl) {
  14. this.fileUrl = fileUrl;
  15. }
  16. /**
  17. * Gets the fileUrl value for this GetCustomizedPageStatus.
  18. *
  19. * @return fileUrl
  20. */
  21. public java.lang.String getFileUrl() {
  22. return fileUrl;
  23. }
  24. /**
  25. * Sets the fileUrl value for this GetCustomizedPageStatus.
  26. *
  27. * @param fileUrl
  28. */
  29. public void setFileUrl(java.lang.String fileUrl) {
  30. this.fileUrl = fileUrl;
  31. }
  32. private java.lang.Object __equalsCalc = null;
  33. public synchronized boolean equals(java.lang.Object obj) {
  34. if (!(obj instanceof GetCustomizedPageStatus)) return false;
  35. GetCustomizedPageStatus other = (GetCustomizedPageStatus) obj;
  36. if (obj == null) return false;
  37. if (this == obj) return true;
  38. if (__equalsCalc != null) {
  39. return (__equalsCalc == obj);
  40. }
  41. __equalsCalc = obj;
  42. boolean _equals;
  43. _equals = true &&
  44. ((this.fileUrl==null && other.getFileUrl()==null) ||
  45. (this.fileUrl!=null &&
  46. this.fileUrl.equals(other.getFileUrl())));
  47. __equalsCalc = null;
  48. return _equals;
  49. }
  50. private boolean __hashCodeCalc = false;
  51. public synchronized int hashCode() {
  52. if (__hashCodeCalc) {
  53. return 0;
  54. }
  55. __hashCodeCalc = true;
  56. int _hashCode = 1;
  57. if (getFileUrl() != null) {
  58. _hashCode += getFileUrl().hashCode();
  59. }
  60. __hashCodeCalc = false;
  61. return _hashCode;
  62. }
  63. // Type metadata
  64. private static org.apache.axis.description.TypeDesc typeDesc =
  65. new org.apache.axis.description.TypeDesc(GetCustomizedPageStatus.class, true);
  66. static {
  67. typeDesc.setXmlType(new javax.xml.namespace.QName("http://schemas.microsoft.com/sharepoint/soap/", ">GetCustomizedPageStatus"));
  68. org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
  69. elemField.setFieldName("fileUrl");
  70. elemField.setXmlName(new javax.xml.namespace.QName("http://schemas.microsoft.com/sharepoint/soap/", "fileUrl"));
  71. elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
  72. elemField.setMinOccurs(0);
  73. elemField.setNillable(false);
  74. typeDesc.addFieldDesc(elemField);
  75. }
  76. /**
  77. * Return type metadata object
  78. */
  79. public static org.apache.axis.description.TypeDesc getTypeDesc() {
  80. return typeDesc;
  81. }
  82. /**
  83. * Get Custom Serializer
  84. */
  85. public static org.apache.axis.encoding.Serializer getSerializer(
  86. java.lang.String mechType,
  87. java.lang.Class _javaType,
  88. javax.xml.namespace.QName _xmlType) {
  89. return
  90. new org.apache.axis.encoding.ser.BeanSerializer(
  91. _javaType, _xmlType, typeDesc);
  92. }
  93. /**
  94. * Get Custom Deserializer
  95. */
  96. public static org.apache.axis.encoding.Deserializer getDeserializer(
  97. java.lang.String mechType,
  98. java.lang.Class _javaType,
  99. javax.xml.namespace.QName _xmlType) {
  100. return
  101. new org.apache.axis.encoding.ser.BeanDeserializer(
  102. _javaType, _xmlType, typeDesc);
  103. }
  104. }