📄 portletdescription.java
字号:
/** * PortletDescription.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 PortletDescription implements java.io.Serializable { private java.lang.String portletHandle; private org.jasig.portal.wsrp.types.MarkupType[] markupTypes; private java.lang.String groupID; private org.jasig.portal.wsrp.types.LocalizedString description; private org.jasig.portal.wsrp.types.LocalizedString shortTitle; private org.jasig.portal.wsrp.types.LocalizedString title; private org.jasig.portal.wsrp.types.LocalizedString displayName; private org.jasig.portal.wsrp.types.LocalizedString[] keywords; private java.lang.String[] userCategories; private java.lang.String[] userProfileItems; private java.lang.Boolean usesMethodGet; private java.lang.Boolean defaultMarkupSecure; private java.lang.Boolean onlySecure; private java.lang.Boolean userContextStoredInSession; private java.lang.Boolean templatesStoredInSession; private java.lang.Boolean hasUserSpecificState; private java.lang.Boolean doesUrlTemplateProcessing; private org.jasig.portal.wsrp.types.Extension[] extensions; public PortletDescription() { } public java.lang.String getPortletHandle() { return portletHandle; } public void setPortletHandle(java.lang.String portletHandle) { this.portletHandle = portletHandle; } public org.jasig.portal.wsrp.types.MarkupType[] getMarkupTypes() { return markupTypes; } public void setMarkupTypes(org.jasig.portal.wsrp.types.MarkupType[] markupTypes) { this.markupTypes = markupTypes; } public org.jasig.portal.wsrp.types.MarkupType getMarkupTypes(int i) { return markupTypes[i]; } public void setMarkupTypes(int i, org.jasig.portal.wsrp.types.MarkupType value) { this.markupTypes[i] = value; } public java.lang.String getGroupID() { return groupID; } public void setGroupID(java.lang.String groupID) { this.groupID = groupID; } public org.jasig.portal.wsrp.types.LocalizedString getDescription() { return description; } public void setDescription(org.jasig.portal.wsrp.types.LocalizedString description) { this.description = description; } public org.jasig.portal.wsrp.types.LocalizedString getShortTitle() { return shortTitle; } public void setShortTitle(org.jasig.portal.wsrp.types.LocalizedString shortTitle) { this.shortTitle = shortTitle; } public org.jasig.portal.wsrp.types.LocalizedString getTitle() { return title; } public void setTitle(org.jasig.portal.wsrp.types.LocalizedString title) { this.title = title; } public org.jasig.portal.wsrp.types.LocalizedString getDisplayName() { return displayName; } public void setDisplayName(org.jasig.portal.wsrp.types.LocalizedString displayName) { this.displayName = displayName; } public org.jasig.portal.wsrp.types.LocalizedString[] getKeywords() { return keywords; } public void setKeywords(org.jasig.portal.wsrp.types.LocalizedString[] keywords) { this.keywords = keywords; } public org.jasig.portal.wsrp.types.LocalizedString getKeywords(int i) { return keywords[i]; } public void setKeywords(int i, org.jasig.portal.wsrp.types.LocalizedString value) { this.keywords[i] = value; } public java.lang.String[] getUserCategories() { return userCategories; } public void setUserCategories(java.lang.String[] userCategories) { this.userCategories = userCategories; } public java.lang.String getUserCategories(int i) { return userCategories[i]; } public void setUserCategories(int i, java.lang.String value) { this.userCategories[i] = value; } public java.lang.String[] getUserProfileItems() { return userProfileItems; } public void setUserProfileItems(java.lang.String[] userProfileItems) { this.userProfileItems = userProfileItems; } public java.lang.String getUserProfileItems(int i) { return userProfileItems[i]; } public void setUserProfileItems(int i, java.lang.String value) { this.userProfileItems[i] = value; } public java.lang.Boolean getUsesMethodGet() { return usesMethodGet; } public void setUsesMethodGet(java.lang.Boolean usesMethodGet) { this.usesMethodGet = usesMethodGet; } public java.lang.Boolean getDefaultMarkupSecure() { return defaultMarkupSecure; } public void setDefaultMarkupSecure(java.lang.Boolean defaultMarkupSecure) { this.defaultMarkupSecure = defaultMarkupSecure; } public java.lang.Boolean getOnlySecure() { return onlySecure; } public void setOnlySecure(java.lang.Boolean onlySecure) { this.onlySecure = onlySecure; } public java.lang.Boolean getUserContextStoredInSession() { return userContextStoredInSession; } public void setUserContextStoredInSession(java.lang.Boolean userContextStoredInSession) { this.userContextStoredInSession = userContextStoredInSession; } public java.lang.Boolean getTemplatesStoredInSession() { return templatesStoredInSession; } public void setTemplatesStoredInSession(java.lang.Boolean templatesStoredInSession) { this.templatesStoredInSession = templatesStoredInSession; } public java.lang.Boolean getHasUserSpecificState() { return hasUserSpecificState; } public void setHasUserSpecificState(java.lang.Boolean hasUserSpecificState) { this.hasUserSpecificState = hasUserSpecificState; } public java.lang.Boolean getDoesUrlTemplateProcessing() { return doesUrlTemplateProcessing; } public void setDoesUrlTemplateProcessing(java.lang.Boolean doesUrlTemplateProcessing) { this.doesUrlTemplateProcessing = doesUrlTemplateProcessing; } 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 PortletDescription)) return false; PortletDescription other = (PortletDescription) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.portletHandle==null && other.getPortletHandle()==null) || (this.portletHandle!=null && this.portletHandle.equals(other.getPortletHandle()))) && ((this.markupTypes==null && other.getMarkupTypes()==null) || (this.markupTypes!=null && java.util.Arrays.equals(this.markupTypes, other.getMarkupTypes()))) && ((this.groupID==null && other.getGroupID()==null) || (this.groupID!=null && this.groupID.equals(other.getGroupID()))) && ((this.description==null && other.getDescription()==null) || (this.description!=null && this.description.equals(other.getDescription()))) && ((this.shortTitle==null && other.getShortTitle()==null) || (this.shortTitle!=null && this.shortTitle.equals(other.getShortTitle()))) && ((this.title==null && other.getTitle()==null) || (this.title!=null && this.title.equals(other.getTitle()))) && ((this.displayName==null && other.getDisplayName()==null) || (this.displayName!=null && this.displayName.equals(other.getDisplayName()))) && ((this.keywords==null && other.getKeywords()==null) || (this.keywords!=null && java.util.Arrays.equals(this.keywords, other.getKeywords()))) && ((this.userCategories==null && other.getUserCategories()==null) || (this.userCategories!=null && java.util.Arrays.equals(this.userCategories, other.getUserCategories()))) && ((this.userProfileItems==null && other.getUserProfileItems()==null) || (this.userProfileItems!=null && java.util.Arrays.equals(this.userProfileItems, other.getUserProfileItems()))) && ((this.usesMethodGet==null && other.getUsesMethodGet()==null) || (this.usesMethodGet!=null && this.usesMethodGet.equals(other.getUsesMethodGet()))) && ((this.defaultMarkupSecure==null && other.getDefaultMarkupSecure()==null) || (this.defaultMarkupSecure!=null && this.defaultMarkupSecure.equals(other.getDefaultMarkupSecure()))) && ((this.onlySecure==null && other.getOnlySecure()==null) || (this.onlySecure!=null && this.onlySecure.equals(other.getOnlySecure()))) && ((this.userContextStoredInSession==null && other.getUserContextStoredInSession()==null) ||
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -