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

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

  1. /**
  2. * GetCustomizedPageStatusResponse.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 GetCustomizedPageStatusResponse implements java.io.Serializable {
  9. private com.google.enterprise.connector.sharepoint.generated.webs.CustomizedPageStatus getCustomizedPageStatusResult;
  10. public GetCustomizedPageStatusResponse() {
  11. }
  12. public GetCustomizedPageStatusResponse(
  13. com.google.enterprise.connector.sharepoint.generated.webs.CustomizedPageStatus getCustomizedPageStatusResult) {
  14. this.getCustomizedPageStatusResult = getCustomizedPageStatusResult;
  15. }
  16. /**
  17. * Gets the getCustomizedPageStatusResult value for this GetCustomizedPageStatusResponse.
  18. *
  19. * @return getCustomizedPageStatusResult
  20. */
  21. public com.google.enterprise.connector.sharepoint.generated.webs.CustomizedPageStatus getGetCustomizedPageStatusResult() {
  22. return getCustomizedPageStatusResult;
  23. }
  24. /**
  25. * Sets the getCustomizedPageStatusResult value for this GetCustomizedPageStatusResponse.
  26. *
  27. * @param getCustomizedPageStatusResult
  28. */
  29. public void setGetCustomizedPageStatusResult(com.google.enterprise.connector.sharepoint.generated.webs.CustomizedPageStatus getCustomizedPageStatusResult) {
  30. this.getCustomizedPageStatusResult = getCustomizedPageStatusResult;
  31. }
  32. private java.lang.Object __equalsCalc = null;
  33. public synchronized boolean equals(java.lang.Object obj) {
  34. if (!(obj instanceof GetCustomizedPageStatusResponse)) return false;
  35. GetCustomizedPageStatusResponse other = (GetCustomizedPageStatusResponse) 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.getCustomizedPageStatusResult==null && other.getGetCustomizedPageStatusResult()==null) ||
  45. (this.getCustomizedPageStatusResult!=null &&
  46. this.getCustomizedPageStatusResult.equals(other.getGetCustomizedPageStatusResult())));
  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 (getGetCustomizedPageStatusResult() != null) {
  58. _hashCode += getGetCustomizedPageStatusResult().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(GetCustomizedPageStatusResponse.class, true);
  66. static {
  67. typeDesc.setXmlType(new javax.xml.namespace.QName("http://schemas.microsoft.com/sharepoint/soap/", ">GetCustomizedPageStatusResponse"));
  68. org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
  69. elemField.setFieldName("getCustomizedPageStatusResult");
  70. elemField.setXmlName(new javax.xml.namespace.QName("http://schemas.microsoft.com/sharepoint/soap/", "GetCustomizedPageStatusResult"));
  71. elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.microsoft.com/sharepoint/soap/", "CustomizedPageStatus"));
  72. elemField.setNillable(false);
  73. typeDesc.addFieldDesc(elemField);
  74. }
  75. /**
  76. * Return type metadata object
  77. */
  78. public static org.apache.axis.description.TypeDesc getTypeDesc() {
  79. return typeDesc;
  80. }
  81. /**
  82. * Get Custom Serializer
  83. */
  84. public static org.apache.axis.encoding.Serializer getSerializer(
  85. java.lang.String mechType,
  86. java.lang.Class _javaType,
  87. javax.xml.namespace.QName _xmlType) {
  88. return
  89. new org.apache.axis.encoding.ser.BeanSerializer(
  90. _javaType, _xmlType, typeDesc);
  91. }
  92. /**
  93. * Get Custom Deserializer
  94. */
  95. public static org.apache.axis.encoding.Deserializer getDeserializer(
  96. java.lang.String mechType,
  97. java.lang.Class _javaType,
  98. javax.xml.namespace.QName _xmlType) {
  99. return
  100. new org.apache.axis.encoding.ser.BeanDeserializer(
  101. _javaType, _xmlType, typeDesc);
  102. }
  103. }