📄 servicedescription.java
字号:
/** * ServiceDescription.java * * This file was auto-generated from WSDL * by the Apache Axis WSDL2Java emitter. */package org.jasig.portal.wsrp.types;/** * @deprecated As of uPortal 2.4, the WSRP producer in uPortal is no longer being maintained. If reintroduced, it will migrate to one based on WSRP4J. */public class ServiceDescription implements java.io.Serializable { private boolean requiresRegistration; private org.jasig.portal.wsrp.types.PortletDescription[] offeredPortlets; private org.jasig.portal.wsrp.types.ItemDescription[] userCategoryDescriptions; private org.jasig.portal.wsrp.types.ItemDescription[] customUserProfileItemDescriptions; private org.jasig.portal.wsrp.types.ItemDescription[] customWindowStateDescriptions; private org.jasig.portal.wsrp.types.ItemDescription[] customModeDescriptions; private org.jasig.portal.wsrp.types.CookieProtocol requiresInitCookie; private org.jasig.portal.wsrp.types.ModelDescription registrationPropertyDescription; private java.lang.String[] locales; private org.jasig.portal.wsrp.types.ResourceList resourceList; private org.jasig.portal.wsrp.types.Extension[] extensions; public ServiceDescription() { } public boolean isRequiresRegistration() { return requiresRegistration; } public void setRequiresRegistration(boolean requiresRegistration) { this.requiresRegistration = requiresRegistration; } public org.jasig.portal.wsrp.types.PortletDescription[] getOfferedPortlets() { return offeredPortlets; } public void setOfferedPortlets(org.jasig.portal.wsrp.types.PortletDescription[] offeredPortlets) { this.offeredPortlets = offeredPortlets; } public org.jasig.portal.wsrp.types.PortletDescription getOfferedPortlets(int i) { return offeredPortlets[i]; } public void setOfferedPortlets(int i, org.jasig.portal.wsrp.types.PortletDescription value) { this.offeredPortlets[i] = value; } public org.jasig.portal.wsrp.types.ItemDescription[] getUserCategoryDescriptions() { return userCategoryDescriptions; } public void setUserCategoryDescriptions(org.jasig.portal.wsrp.types.ItemDescription[] userCategoryDescriptions) { this.userCategoryDescriptions = userCategoryDescriptions; } public org.jasig.portal.wsrp.types.ItemDescription getUserCategoryDescriptions(int i) { return userCategoryDescriptions[i]; } public void setUserCategoryDescriptions(int i, org.jasig.portal.wsrp.types.ItemDescription value) { this.userCategoryDescriptions[i] = value; } public org.jasig.portal.wsrp.types.ItemDescription[] getCustomUserProfileItemDescriptions() { return customUserProfileItemDescriptions; } public void setCustomUserProfileItemDescriptions(org.jasig.portal.wsrp.types.ItemDescription[] customUserProfileItemDescriptions) { this.customUserProfileItemDescriptions = customUserProfileItemDescriptions; } public org.jasig.portal.wsrp.types.ItemDescription getCustomUserProfileItemDescriptions(int i) { return customUserProfileItemDescriptions[i]; } public void setCustomUserProfileItemDescriptions(int i, org.jasig.portal.wsrp.types.ItemDescription value) { this.customUserProfileItemDescriptions[i] = value; } public org.jasig.portal.wsrp.types.ItemDescription[] getCustomWindowStateDescriptions() { return customWindowStateDescriptions; } public void setCustomWindowStateDescriptions(org.jasig.portal.wsrp.types.ItemDescription[] customWindowStateDescriptions) { this.customWindowStateDescriptions = customWindowStateDescriptions; } public org.jasig.portal.wsrp.types.ItemDescription getCustomWindowStateDescriptions(int i) { return customWindowStateDescriptions[i]; } public void setCustomWindowStateDescriptions(int i, org.jasig.portal.wsrp.types.ItemDescription value) { this.customWindowStateDescriptions[i] = value; } public org.jasig.portal.wsrp.types.ItemDescription[] getCustomModeDescriptions() { return customModeDescriptions; } public void setCustomModeDescriptions(org.jasig.portal.wsrp.types.ItemDescription[] customModeDescriptions) { this.customModeDescriptions = customModeDescriptions; } public org.jasig.portal.wsrp.types.ItemDescription getCustomModeDescriptions(int i) { return customModeDescriptions[i]; } public void setCustomModeDescriptions(int i, org.jasig.portal.wsrp.types.ItemDescription value) { this.customModeDescriptions[i] = value; } public org.jasig.portal.wsrp.types.CookieProtocol getRequiresInitCookie() { return requiresInitCookie; } public void setRequiresInitCookie(org.jasig.portal.wsrp.types.CookieProtocol requiresInitCookie) { this.requiresInitCookie = requiresInitCookie; } public org.jasig.portal.wsrp.types.ModelDescription getRegistrationPropertyDescription() { return registrationPropertyDescription; } public void setRegistrationPropertyDescription(org.jasig.portal.wsrp.types.ModelDescription registrationPropertyDescription) { this.registrationPropertyDescription = registrationPropertyDescription; } public java.lang.String[] getLocales() { return locales; } public void setLocales(java.lang.String[] locales) { this.locales = locales; } public java.lang.String getLocales(int i) { return locales[i]; } public void setLocales(int i, java.lang.String value) { this.locales[i] = value; } public org.jasig.portal.wsrp.types.ResourceList getResourceList() { return resourceList; } public void setResourceList(org.jasig.portal.wsrp.types.ResourceList resourceList) { this.resourceList = resourceList; } public org.jasig.portal.wsrp.types.Extension[] getExtensions() { return extensions; } public void setExtensions(org.jasig.portal.wsrp.types.Extension[] extensions) { this.extensions = extensions; } public org.jasig.portal.wsrp.types.Extension getExtensions(int i) { return extensions[i]; } public void setExtensions(int i, org.jasig.portal.wsrp.types.Extension value) { this.extensions[i] = value; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof ServiceDescription)) return false; ServiceDescription other = (ServiceDescription) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && this.requiresRegistration == other.isRequiresRegistration() && ((this.offeredPortlets==null && other.getOfferedPortlets()==null) || (this.offeredPortlets!=null && java.util.Arrays.equals(this.offeredPortlets, other.getOfferedPortlets()))) && ((this.userCategoryDescriptions==null && other.getUserCategoryDescriptions()==null) || (this.userCategoryDescriptions!=null && java.util.Arrays.equals(this.userCategoryDescriptions, other.getUserCategoryDescriptions()))) && ((this.customUserProfileItemDescriptions==null && other.getCustomUserProfileItemDescriptions()==null) || (this.customUserProfileItemDescriptions!=null && java.util.Arrays.equals(this.customUserProfileItemDescriptions, other.getCustomUserProfileItemDescriptions()))) && ((this.customWindowStateDescriptions==null && other.getCustomWindowStateDescriptions()==null) || (this.customWindowStateDescriptions!=null && java.util.Arrays.equals(this.customWindowStateDescriptions, other.getCustomWindowStateDescriptions()))) && ((this.customModeDescriptions==null && other.getCustomModeDescriptions()==null) || (this.customModeDescriptions!=null && java.util.Arrays.equals(this.customModeDescriptions, other.getCustomModeDescriptions()))) && ((this.requiresInitCookie==null && other.getRequiresInitCookie()==null) || (this.requiresInitCookie!=null && this.requiresInitCookie.equals(other.getRequiresInitCookie()))) && ((this.registrationPropertyDescription==null && other.getRegistrationPropertyDescription()==null) || (this.registrationPropertyDescription!=null && this.registrationPropertyDescription.equals(other.getRegistrationPropertyDescription()))) && ((this.locales==null && other.getLocales()==null) || (this.locales!=null && java.util.Arrays.equals(this.locales, other.getLocales()))) && ((this.resourceList==null && other.getResourceList()==null) || (this.resourceList!=null && this.resourceList.equals(other.getResourceList()))) &&
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -