text
stringlengths 30
1.67M
|
|---|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class Register { @ XmlElement ( required = true ) protected RegistrationData registrationData ; @ XmlElement ( required = true , nillable = true ) protected Lifetime lifetime ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; public RegistrationData getRegistrationData ( ) { return registrationData ; } public void setRegistrationData ( RegistrationData value ) { this . registrationData = value ; } public Lifetime getLifetime ( ) { return lifetime ; } public void setLifetime ( Lifetime value ) { this . lifetime = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class PortletContext { @ XmlElement ( required = true ) protected String portletHandle ; protected byte [ ] portletState ; protected Lifetime scheduledDestruction ; protected List < Extension > extensions ; public String getPortletHandle ( ) { return portletHandle ; } public void setPortletHandle ( String value ) { this . portletHandle = value ; } public byte [ ] getPortletState ( ) { return portletState ; } public void setPortletState ( byte [ ] value ) { this . portletState = ( ( byte [ ] ) value ) ; } public Lifetime getScheduledDestruction ( ) { return scheduledDestruction ; } public void setScheduledDestruction ( Lifetime value ) { this . scheduledDestruction = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class InvalidRegistrationFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class ExportNoLongerValid extends Exception { private ExportNoLongerValidFault faultInfo ; public ExportNoLongerValid ( String message , ExportNoLongerValidFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public ExportNoLongerValid ( String message , ExportNoLongerValidFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public ExportNoLongerValidFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class InvalidHandle extends Exception { private InvalidHandleFault faultInfo ; public InvalidHandle ( String message , InvalidHandleFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public InvalidHandle ( String message , InvalidHandleFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public InvalidHandleFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class GetPortletProperties { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true , nillable = true ) protected List < String > names ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public List < String > getNames ( ) { if ( names == null ) { names = new ArrayList < String > ( ) ; } return this . names ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . List ; import javax . jws . WebMethod ; import javax . jws . WebParam ; import javax . jws . WebService ; import javax . xml . ws . Holder ; import javax . xml . ws . RequestWrapper ; import javax . xml . ws . ResponseWrapper ; @ WebService ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public interface WSRPV2ServiceDescriptionPortType { @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getServiceDescription ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > desiredLocales , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > portletHandles , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < Boolean > requiresRegistration , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < PortletDescription > > offeredPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ItemDescription > > userCategoryDescriptions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ExtensionDescription > > extensionDescriptions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ItemDescription > > customWindowStateDescriptions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ItemDescription > > customModeDescriptions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < CookieProtocol > requiresInitCookie , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ModelDescription > registrationPropertyDescription , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < String > > locales , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < EventDescription > > eventDescriptions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ModelTypes > schemaType , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < String > > supportedOptions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ExportDescription > exportDescription , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < Boolean > mayReturnRegistrationState , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws InvalidRegistration , ModifyRegistrationRequired , OperationFailed , ResourceSuspended ; } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlSchemaType ; import javax . xml . bind . annotation . XmlType ; import javax . xml . namespace . QName ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT:description>" , "<STR_LIT:label>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class EventDescription { protected List < QName > aliases ; protected LocalizedString description ; protected LocalizedString label ; protected LocalizedString hint ; protected ModelTypes schemaType ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected QName name ; @ XmlAttribute protected QName type ; @ XmlAttribute @ XmlSchemaType ( name = "<STR_LIT>" ) protected String schemaLocation ; public List < QName > getAliases ( ) { if ( aliases == null ) { aliases = new ArrayList < QName > ( ) ; } return this . aliases ; } public LocalizedString getDescription ( ) { return description ; } public void setDescription ( LocalizedString value ) { this . description = value ; } public LocalizedString getLabel ( ) { return label ; } public void setLabel ( LocalizedString value ) { this . label = value ; } public LocalizedString getHint ( ) { return hint ; } public void setHint ( LocalizedString value ) { this . hint = value ; } public ModelTypes getSchemaType ( ) { return schemaType ; } public void setSchemaType ( ModelTypes value ) { this . schemaType = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public QName getName ( ) { return name ; } public void setName ( QName value ) { this . name = value ; } public QName getType ( ) { return type ; } public void setType ( QName value ) { this . type = value ; } public String getSchemaLocation ( ) { return schemaLocation ; } public void setSchemaLocation ( String value ) { this . schemaLocation = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class InvalidUserCategory extends Exception { private InvalidUserCategoryFault faultInfo ; public InvalidUserCategory ( String message , InvalidUserCategoryFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public InvalidUserCategory ( String message , InvalidUserCategoryFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public InvalidUserCategoryFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class MarkupResponse { @ XmlElement ( required = true ) protected MarkupContext markupContext ; protected SessionContext sessionContext ; protected List < Extension > extensions ; public MarkupContext getMarkupContext ( ) { return markupContext ; } public void setMarkupContext ( MarkupContext value ) { this . markupContext = value ; } public SessionContext getSessionContext ( ) { return sessionContext ; } public void setSessionContext ( SessionContext value ) { this . sessionContext = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class PersonName { protected String prefix ; protected String given ; protected String family ; protected String middle ; protected String suffix ; protected String nickname ; protected List < Extension > extensions ; public String getPrefix ( ) { return prefix ; } public void setPrefix ( String value ) { this . prefix = value ; } public String getGiven ( ) { return given ; } public void setGiven ( String value ) { this . given = value ; } public String getFamily ( ) { return family ; } public void setFamily ( String value ) { this . family = value ; } public String getMiddle ( ) { return middle ; } public void setMiddle ( String value ) { this . middle = value ; } public String getSuffix ( ) { return suffix ; } public void setSuffix ( String value ) { this . suffix = value ; } public String getNickname ( ) { return nickname ; } public void setNickname ( String value ) { this . nickname = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class UnsupportedLocale extends Exception { private UnsupportedLocaleFault faultInfo ; public UnsupportedLocale ( String message , UnsupportedLocaleFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public UnsupportedLocale ( String message , UnsupportedLocaleFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public UnsupportedLocaleFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . List ; import javax . jws . WebMethod ; import javax . jws . WebParam ; import javax . jws . WebResult ; import javax . jws . WebService ; import javax . jws . soap . SOAPBinding ; import javax . xml . ws . Holder ; import javax . xml . ws . RequestWrapper ; import javax . xml . ws . ResponseWrapper ; @ WebService ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public interface WSRPV2RegistrationPortType { @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void register ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationData registrationData , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) Lifetime lifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < byte [ ] > registrationState , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < Lifetime > scheduledDestruction , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < String > registrationHandle ) throws MissingParameters , OperationFailed , OperationNotSupported ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public List < Extension > deregister ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext ) throws InvalidRegistration , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void modifyRegistration ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationData registrationData , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < byte [ ] > registrationState , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < Lifetime > scheduledDestruction , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws InvalidRegistration , MissingParameters , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , partName = "<STR_LIT>" ) @ SOAPBinding ( parameterStyle = SOAPBinding . ParameterStyle . BARE ) public Lifetime getRegistrationLifetime ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , partName = "<STR_LIT>" ) GetRegistrationLifetime getRegistrationLifetime ) throws AccessDenied , InvalidHandle , InvalidRegistration , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , partName = "<STR_LIT>" ) @ SOAPBinding ( parameterStyle = SOAPBinding . ParameterStyle . BARE ) public Lifetime setRegistrationLifetime ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , partName = "<STR_LIT>" ) SetRegistrationLifetime setRegistrationLifetime ) throws AccessDenied , InvalidHandle , InvalidRegistration , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class GetResource { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true ) protected RuntimeContext runtimeContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true ) protected ResourceParams resourceParams ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public RuntimeContext getRuntimeContext ( ) { return runtimeContext ; } public void setRuntimeContext ( RuntimeContext value ) { this . runtimeContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public ResourceParams getResourceParams ( ) { return resourceParams ; } public void setResourceParams ( ResourceParams value ) { this . resourceParams = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class Resource { @ XmlElement ( required = true ) protected List < ResourceValue > values ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected String resourceName ; public List < ResourceValue > getValues ( ) { if ( values == null ) { values = new ArrayList < ResourceValue > ( ) ; } return this . values ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getResourceName ( ) { return resourceName ; } public void setResourceName ( String value ) { this . resourceName = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class EventParams { @ XmlElement ( required = true ) protected List < Event > events ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected StateChange portletStateChange ; public List < Event > getEvents ( ) { if ( events == null ) { events = new ArrayList < Event > ( ) ; } return this . events ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public StateChange getPortletStateChange ( ) { return portletStateChange ; } public void setPortletStateChange ( StateChange value ) { this . portletStateChange = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class NavigationalContext { protected List < NamedString > publicValues ; protected List < Extension > extensions ; @ XmlAttribute protected String opaqueValue ; public List < NamedString > getPublicValues ( ) { if ( publicValues == null ) { publicValues = new ArrayList < NamedString > ( ) ; } return this . publicValues ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getOpaqueValue ( ) { return opaqueValue ; } public void setOpaqueValue ( String value ) { this . opaqueValue = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class UnsupportedMimeType extends Exception { private UnsupportedMimeTypeFault faultInfo ; public UnsupportedMimeType ( String message , UnsupportedMimeTypeFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public UnsupportedMimeType ( String message , UnsupportedMimeTypeFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public UnsupportedMimeTypeFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ClonePortlet { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true , nillable = true ) protected Lifetime lifetime ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public Lifetime getLifetime ( ) { return lifetime ; } public void setLifetime ( Lifetime value ) { this . lifetime = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) public class FailedPortlets extends BaseFailed { @ XmlElement ( required = true ) protected List < String > portletHandles ; public List < String > getPortletHandles ( ) { if ( portletHandles == null ) { portletHandles = new ArrayList < String > ( ) ; } return this . portletHandles ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ResourceResponse { @ XmlElement ( required = true ) protected ResourceContext resourceContext ; protected SessionContext sessionContext ; protected PortletContext portletContext ; protected List < Extension > extensions ; public ResourceContext getResourceContext ( ) { return resourceContext ; } public void setResourceContext ( ResourceContext value ) { this . resourceContext = value ; } public SessionContext getSessionContext ( ) { return sessionContext ; } public void setSessionContext ( SessionContext value ) { this . sessionContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class DestroyPortletsResponse { protected List < FailedPortlets > failedPortlets ; protected List < Extension > extensions ; public List < FailedPortlets > getFailedPortlets ( ) { if ( failedPortlets == null ) { failedPortlets = new ArrayList < FailedPortlets > ( ) ; } return this . failedPortlets ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class ModifyRegistrationRequired extends Exception { private ModifyRegistrationRequiredFault faultInfo ; public ModifyRegistrationRequired ( String message , ModifyRegistrationRequiredFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public ModifyRegistrationRequired ( String message , ModifyRegistrationRequiredFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public ModifyRegistrationRequiredFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class Deregister { @ XmlElement ( required = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT:email>" , "<STR_LIT>" , "<STR_LIT>" } ) public class Online { protected String email ; protected String uri ; protected List < Extension > extensions ; public String getEmail ( ) { return email ; } public void setEmail ( String value ) { this . email = value ; } public String getUri ( ) { return uri ; } public void setUri ( String value ) { this . uri = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ClientData { protected String userAgent ; protected CCPPHeaders ccppHeaders ; protected List < NamedString > clientAttributes ; protected List < Extension > extensions ; @ XmlAttribute protected String requestVerb ; public String getUserAgent ( ) { return userAgent ; } public void setUserAgent ( String value ) { this . userAgent = value ; } public CCPPHeaders getCcppHeaders ( ) { return ccppHeaders ; } public void setCcppHeaders ( CCPPHeaders value ) { this . ccppHeaders = value ; } public List < NamedString > getClientAttributes ( ) { if ( clientAttributes == null ) { clientAttributes = new ArrayList < NamedString > ( ) ; } return this . clientAttributes ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getRequestVerb ( ) { return requestVerb ; } public void setRequestVerb ( String value ) { this . requestVerb = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; import javax . xml . namespace . QName ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class ResetProperty { @ XmlAttribute ( required = true ) protected QName name ; public QName getName ( ) { return name ; } public void setName ( QName value ) { this . name = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAnyElement ; import javax . xml . bind . annotation . XmlRootElement ; import javax . xml . bind . annotation . XmlType ; import org . w3c . dom . Element ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) @ XmlRootElement ( name = "<STR_LIT>" ) public class NewWindowState { @ XmlAnyElement ( lax = true ) protected Object any ; public Object getAny ( ) { return any ; } public void setAny ( Object value ) { this . any = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ImportPortlets { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true , nillable = true ) protected byte [ ] importContext ; @ XmlElement ( required = true ) protected List < ImportPortlet > importPortlet ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true , nillable = true ) protected Lifetime lifetime ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public byte [ ] getImportContext ( ) { return importContext ; } public void setImportContext ( byte [ ] value ) { this . importContext = ( ( byte [ ] ) value ) ; } public List < ImportPortlet > getImportPortlet ( ) { if ( importPortlet == null ) { importPortlet = new ArrayList < ImportPortlet > ( ) ; } return this . importPortlet ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public Lifetime getLifetime ( ) { return lifetime ; } public void setLifetime ( Lifetime value ) { this . lifetime = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; import java . io . Serializable ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class Fault implements Serializable { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ReleaseSessions { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected List < String > sessionIDs ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public List < String > getSessionIDs ( ) { if ( sessionIDs == null ) { sessionIDs = new ArrayList < String > ( ) ; } return this . sessionIDs ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class InvalidCookieFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class EmployerInfo { protected String employer ; protected String department ; protected String jobtitle ; protected List < Extension > extensions ; public String getEmployer ( ) { return employer ; } public void setEmployer ( String value ) { this . employer = value ; } public String getDepartment ( ) { return department ; } public void setDepartment ( String value ) { this . department = value ; } public String getJobtitle ( ) { return jobtitle ; } public void setJobtitle ( String value ) { this . jobtitle = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ImportPortletsResponse { protected List < ImportedPortlet > importedPortlets ; protected List < ImportPortletsFailed > importFailed ; protected ResourceList resourceList ; protected List < Extension > extensions ; public List < ImportedPortlet > getImportedPortlets ( ) { if ( importedPortlets == null ) { importedPortlets = new ArrayList < ImportedPortlet > ( ) ; } return this . importedPortlets ; } public List < ImportPortletsFailed > getImportFailed ( ) { if ( importFailed == null ) { importFailed = new ArrayList < ImportPortletsFailed > ( ) ; } return this . importFailed ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class InconsistentParametersFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class ResourceParams extends MimeRequest { protected List < NamedString > formParameters ; protected List < UploadContext > uploadContexts ; @ XmlAttribute ( required = true ) protected String resourceID ; @ XmlAttribute ( required = true ) protected StateChange portletStateChange ; @ XmlAttribute protected String resourceState ; @ XmlAttribute protected String resourceCacheability ; public List < NamedString > getFormParameters ( ) { if ( formParameters == null ) { formParameters = new ArrayList < NamedString > ( ) ; } return this . formParameters ; } public List < UploadContext > getUploadContexts ( ) { if ( uploadContexts == null ) { uploadContexts = new ArrayList < UploadContext > ( ) ; } return this . uploadContexts ; } public String getResourceID ( ) { return resourceID ; } public void setResourceID ( String value ) { this . resourceID = value ; } public StateChange getPortletStateChange ( ) { return portletStateChange ; } public void setPortletStateChange ( StateChange value ) { this . portletStateChange = value ; } public String getResourceState ( ) { return resourceState ; } public void setResourceState ( String value ) { this . resourceState = value ; } public String getResourceCacheability ( ) { return resourceCacheability ; } public void setResourceCacheability ( String value ) { this . resourceCacheability = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class InvalidHandleFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class PortletStateChangeRequired extends Exception { private PortletStateChangeRequiredFault faultInfo ; public PortletStateChangeRequired ( String message , PortletStateChangeRequiredFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public PortletStateChangeRequired ( String message , PortletStateChangeRequiredFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public PortletStateChangeRequiredFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ReleaseExport { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected byte [ ] exportContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public byte [ ] getExportContext ( ) { return exportContext ; } public void setExportContext ( byte [ ] value ) { this . exportContext = ( ( byte [ ] ) value ) ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class Telecom { protected TelephoneNum telephone ; protected TelephoneNum fax ; protected TelephoneNum mobile ; protected TelephoneNum pager ; protected List < Extension > extensions ; public TelephoneNum getTelephone ( ) { return telephone ; } public void setTelephone ( TelephoneNum value ) { this . telephone = value ; } public TelephoneNum getFax ( ) { return fax ; } public void setFax ( TelephoneNum value ) { this . fax = value ; } public TelephoneNum getMobile ( ) { return mobile ; } public void setMobile ( TelephoneNum value ) { this . mobile = value ; } public TelephoneNum getPager ( ) { return pager ; } public void setPager ( TelephoneNum value ) { this . pager = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ServiceDescription { protected boolean requiresRegistration ; protected List < PortletDescription > offeredPortlets ; protected List < ItemDescription > userCategoryDescriptions ; protected List < ExtensionDescription > extensionDescriptions ; protected List < ItemDescription > customWindowStateDescriptions ; protected List < ItemDescription > customModeDescriptions ; @ XmlElement ( defaultValue = "<STR_LIT:none>" ) protected CookieProtocol requiresInitCookie ; protected ModelDescription registrationPropertyDescription ; protected List < String > locales ; protected ResourceList resourceList ; protected List < EventDescription > eventDescriptions ; protected ModelTypes schemaType ; protected List < String > supportedOptions ; protected ExportDescription exportDescription ; @ XmlElement ( defaultValue = "<STR_LIT:false>" ) protected Boolean mayReturnRegistrationState ; protected List < Extension > extensions ; public boolean isRequiresRegistration ( ) { return requiresRegistration ; } public void setRequiresRegistration ( boolean value ) { this . requiresRegistration = value ; } public List < PortletDescription > getOfferedPortlets ( ) { if ( offeredPortlets == null ) { offeredPortlets = new ArrayList < PortletDescription > ( ) ; } return this . offeredPortlets ; } public List < ItemDescription > getUserCategoryDescriptions ( ) { if ( userCategoryDescriptions == null ) { userCategoryDescriptions = new ArrayList < ItemDescription > ( ) ; } return this . userCategoryDescriptions ; } public List < ExtensionDescription > getExtensionDescriptions ( ) { if ( extensionDescriptions == null ) { extensionDescriptions = new ArrayList < ExtensionDescription > ( ) ; } return this . extensionDescriptions ; } public List < ItemDescription > getCustomWindowStateDescriptions ( ) { if ( customWindowStateDescriptions == null ) { customWindowStateDescriptions = new ArrayList < ItemDescription > ( ) ; } return this . customWindowStateDescriptions ; } public List < ItemDescription > getCustomModeDescriptions ( ) { if ( customModeDescriptions == null ) { customModeDescriptions = new ArrayList < ItemDescription > ( ) ; } return this . customModeDescriptions ; } public CookieProtocol getRequiresInitCookie ( ) { return requiresInitCookie ; } public void setRequiresInitCookie ( CookieProtocol value ) { this . requiresInitCookie = value ; } public ModelDescription getRegistrationPropertyDescription ( ) { return registrationPropertyDescription ; } public void setRegistrationPropertyDescription ( ModelDescription value ) { this . registrationPropertyDescription = value ; } public List < String > getLocales ( ) { if ( locales == null ) { locales = new ArrayList < String > ( ) ; } return this . locales ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < EventDescription > getEventDescriptions ( ) { if ( eventDescriptions == null ) { eventDescriptions = new ArrayList < EventDescription > ( ) ; } return this . eventDescriptions ; } public ModelTypes getSchemaType ( ) { return schemaType ; } public void setSchemaType ( ModelTypes value ) { this . schemaType = value ; } public List < String > getSupportedOptions ( ) { if ( supportedOptions == null ) { supportedOptions = new ArrayList < String > ( ) ; } return this . supportedOptions ; } public ExportDescription getExportDescription ( ) { return exportDescription ; } public void setExportDescription ( ExportDescription value ) { this . exportDescription = value ; } public Boolean isMayReturnRegistrationState ( ) { return mayReturnRegistrationState ; } public void setMayReturnRegistrationState ( Boolean value ) { this . mayReturnRegistrationState = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class ModifyRegistrationRequiredFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class GetPortletsLifetimeResponse { protected List < PortletLifetime > portletLifetime ; protected List < FailedPortlets > failedPortlets ; protected ResourceList resourceList ; protected List < Extension > extensions ; public List < PortletLifetime > getPortletLifetime ( ) { if ( portletLifetime == null ) { portletLifetime = new ArrayList < PortletLifetime > ( ) ; } return this . portletLifetime ; } public List < FailedPortlets > getFailedPortlets ( ) { if ( failedPortlets == null ) { failedPortlets = new ArrayList < FailedPortlets > ( ) ; } return this . failedPortlets ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class MimeResponse { @ XmlElement ( defaultValue = "<STR_LIT:false>" ) protected Boolean useCachedItem ; protected String mimeType ; protected String itemString ; protected byte [ ] itemBinary ; protected String locale ; @ XmlElement ( defaultValue = "<STR_LIT:false>" ) protected Boolean requiresRewriting ; protected CacheControl cacheControl ; protected List < NamedString > clientAttributes ; protected List < Extension > extensions ; @ XmlAttribute protected String ccppProfileWarning ; public Boolean isUseCachedItem ( ) { return useCachedItem ; } public void setUseCachedItem ( Boolean value ) { this . useCachedItem = value ; } public String getMimeType ( ) { return mimeType ; } public void setMimeType ( String value ) { this . mimeType = value ; } public String getItemString ( ) { return itemString ; } public void setItemString ( String value ) { this . itemString = value ; } public byte [ ] getItemBinary ( ) { return itemBinary ; } public void setItemBinary ( byte [ ] value ) { this . itemBinary = ( ( byte [ ] ) value ) ; } public String getLocale ( ) { return locale ; } public void setLocale ( String value ) { this . locale = value ; } public Boolean isRequiresRewriting ( ) { return requiresRewriting ; } public void setRequiresRewriting ( Boolean value ) { this . requiresRewriting = value ; } public CacheControl getCacheControl ( ) { return cacheControl ; } public void setCacheControl ( CacheControl value ) { this . cacheControl = value ; } public List < NamedString > getClientAttributes ( ) { if ( clientAttributes == null ) { clientAttributes = new ArrayList < NamedString > ( ) ; } return this . clientAttributes ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getCcppProfileWarning ( ) { return ccppProfileWarning ; } public void setCcppProfileWarning ( String value ) { this . ccppProfileWarning = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class MarkupContext extends MimeResponse { protected String preferredTitle ; protected List < String > validNewModes ; public String getPreferredTitle ( ) { return preferredTitle ; } public void setPreferredTitle ( String value ) { this . preferredTitle = value ; } public List < String > getValidNewModes ( ) { if ( validNewModes == null ) { validNewModes = new ArrayList < String > ( ) ; } return this . validNewModes ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class CopyPortletsResponse { protected List < CopiedPortlet > copiedPortlets ; protected List < FailedPortlets > failedPortlets ; protected ResourceList resourceList ; protected List < Extension > extensions ; public List < CopiedPortlet > getCopiedPortlets ( ) { if ( copiedPortlets == null ) { copiedPortlets = new ArrayList < CopiedPortlet > ( ) ; } return this . copiedPortlets ; } public List < FailedPortlets > getFailedPortlets ( ) { if ( failedPortlets == null ) { failedPortlets = new ArrayList < FailedPortlets > ( ) ; } return this . failedPortlets ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class AccessDenied extends Exception { private AccessDeniedFault faultInfo ; public AccessDenied ( String message , AccessDeniedFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public AccessDenied ( String message , AccessDeniedFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public AccessDeniedFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class ResourceSuspendedFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class SetExportLifetime { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected byte [ ] exportContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true , nillable = true ) protected Lifetime lifetime ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public byte [ ] getExportContext ( ) { return exportContext ; } public void setExportContext ( byte [ ] value ) { this . exportContext = ( ( byte [ ] ) value ) ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public Lifetime getLifetime ( ) { return lifetime ; } public void setLifetime ( Lifetime value ) { this . lifetime = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class UnsupportedMode extends Exception { private UnsupportedModeFault faultInfo ; public UnsupportedMode ( String message , UnsupportedModeFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public UnsupportedMode ( String message , UnsupportedModeFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public UnsupportedModeFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) public class SessionParams { protected List < Extension > extensions ; @ XmlAttribute protected String sessionID ; public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getSessionID ( ) { return sessionID ; } public void setSessionID ( String value ) { this . sessionID = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; import javax . xml . namespace . QName ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT:description>" , "<STR_LIT:label>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ParameterDescription { protected List < QName > names ; protected LocalizedString description ; protected LocalizedString label ; protected LocalizedString hint ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected String identifier ; public List < QName > getNames ( ) { if ( names == null ) { names = new ArrayList < QName > ( ) ; } return this . names ; } public LocalizedString getDescription ( ) { return description ; } public void setDescription ( LocalizedString value ) { this . description = value ; } public LocalizedString getLabel ( ) { return label ; } public void setLabel ( LocalizedString value ) { this . label = value ; } public LocalizedString getHint ( ) { return hint ; } public void setHint ( LocalizedString value ) { this . hint = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getIdentifier ( ) { return identifier ; } public void setIdentifier ( String value ) { this . identifier = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class InvalidRegistration extends Exception { private InvalidRegistrationFault faultInfo ; public InvalidRegistration ( String message , InvalidRegistrationFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public InvalidRegistration ( String message , InvalidRegistrationFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public InvalidRegistrationFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ExportPortletsResponse { @ XmlElement ( required = true , nillable = true ) protected byte [ ] exportContext ; protected List < ExportedPortlet > exportedPortlet ; protected List < FailedPortlets > failedPortlets ; protected Lifetime lifetime ; protected ResourceList resourceList ; protected List < Extension > extensions ; public byte [ ] getExportContext ( ) { return exportContext ; } public void setExportContext ( byte [ ] value ) { this . exportContext = ( ( byte [ ] ) value ) ; } public List < ExportedPortlet > getExportedPortlet ( ) { if ( exportedPortlet == null ) { exportedPortlet = new ArrayList < ExportedPortlet > ( ) ; } return this . exportedPortlet ; } public List < FailedPortlets > getFailedPortlets ( ) { if ( failedPortlets == null ) { failedPortlets = new ArrayList < FailedPortlets > ( ) ; } return this . failedPortlets ; } public Lifetime getLifetime ( ) { return lifetime ; } public void setLifetime ( Lifetime value ) { this . lifetime = value ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . List ; import javax . jws . WebMethod ; import javax . jws . WebParam ; import javax . jws . WebResult ; import javax . jws . WebService ; import javax . jws . soap . SOAPBinding ; import javax . xml . ws . Holder ; import javax . xml . ws . RequestWrapper ; import javax . xml . ws . ResponseWrapper ; @ WebService ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public interface WSRPV2PortletManagementPortType { @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getPortletDescription ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > desiredLocales , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < PortletDescription > portletDescription , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void clonePortlet ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) Lifetime lifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < String > portletHandle , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < byte [ ] > portletState , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < Lifetime > scheduledDestruction , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void destroyPortlets ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > portletHandles , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < FailedPortlets > > failedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws InconsistentParameters , InvalidRegistration , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getPortletsLifetime ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < PortletContext > portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < PortletLifetime > > portletLifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < FailedPortlets > > failedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void setPortletsLifetime ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < PortletContext > portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) Lifetime lifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < PortletLifetime > > updatedPortlet , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < FailedPortlets > > failedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void copyPortlets ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext toRegistrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext toUserContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext fromRegistrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext fromUserContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < PortletContext > fromPortletContexts , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) Lifetime lifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < CopiedPortlet > > copiedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < FailedPortlets > > failedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void exportPortlets ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < PortletContext > portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . INOUT ) Holder < Lifetime > lifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) Boolean exportByValueRequired , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < byte [ ] > exportContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ExportedPortlet > > exportedPortlet , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < FailedPortlets > > failedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , ExportByValueNotSupported , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void importPortlets ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) byte [ ] importContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < ImportPortlet > importPortlet , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) Lifetime lifetime , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ImportedPortlet > > importedPortlets , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ImportPortletsFailed > > importFailed , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , ExportNoLongerValid , InconsistentParameters , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public List < Extension > releaseExport ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) byte [ ] exportContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext ) ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , partName = "<STR_LIT>" ) @ SOAPBinding ( parameterStyle = SOAPBinding . ParameterStyle . BARE ) public Lifetime setExportLifetime ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , partName = "<STR_LIT>" ) SetExportLifetime setExportLifetime ) throws AccessDenied , InvalidHandle , InvalidRegistration , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void setPortletProperties ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PropertyList propertyList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < String > portletHandle , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < byte [ ] > portletState , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < Lifetime > scheduledDestruction , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getPortletProperties ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > names , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Property > > properties , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < ResetProperty > > resetProperties , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getPortletPropertyDescription ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > desiredLocales , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ModelDescription > modelDescription , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceList > resourceList , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidHandle , InvalidRegistration , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class GetPortletDescription { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; protected List < String > desiredLocales ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public List < String > getDesiredLocales ( ) { if ( desiredLocales == null ) { desiredLocales = new ArrayList < String > ( ) ; } return this . desiredLocales ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . List ; import javax . jws . WebMethod ; import javax . jws . WebParam ; import javax . jws . WebResult ; import javax . jws . WebService ; import javax . xml . ws . Holder ; import javax . xml . ws . RequestWrapper ; import javax . xml . ws . ResponseWrapper ; @ WebService ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public interface WSRPV2MarkupPortType { @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getMarkup ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RuntimeContext runtimeContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) MarkupParams markupParams , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < MarkupContext > markupContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < SessionContext > sessionContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidCookie , InvalidHandle , InvalidRegistration , InvalidSession , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , ResourceSuspended , UnsupportedLocale , UnsupportedMimeType , UnsupportedMode , UnsupportedWindowState ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void getResource ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . INOUT ) Holder < PortletContext > portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RuntimeContext runtimeContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) ResourceParams resourceParams , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < ResourceContext > resourceContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < SessionContext > sessionContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidCookie , InvalidHandle , InvalidRegistration , InvalidSession , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended , UnsupportedLocale , UnsupportedMimeType , UnsupportedMode , UnsupportedWindowState ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void performBlockingInteraction ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RuntimeContext runtimeContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) MarkupParams markupParams , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) InteractionParams interactionParams , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < UpdateResponse > updateResponse , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < String > redirectURL , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidCookie , InvalidHandle , InvalidRegistration , InvalidSession , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , PortletStateChangeRequired , ResourceSuspended , UnsupportedLocale , UnsupportedMimeType , UnsupportedMode , UnsupportedWindowState ; @ WebMethod ( action = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public void handleEvents ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) PortletContext portletContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RuntimeContext runtimeContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) MarkupParams markupParams , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) EventParams eventParams , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < UpdateResponse > updateResponse , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < HandleEventsFailed > > failedEvents , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , mode = WebParam . Mode . OUT ) Holder < List < Extension > > extensions ) throws AccessDenied , InconsistentParameters , InvalidCookie , InvalidHandle , InvalidRegistration , InvalidSession , InvalidUserCategory , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , PortletStateChangeRequired , ResourceSuspended , UnsupportedLocale , UnsupportedMimeType , UnsupportedMode , UnsupportedWindowState ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public List < Extension > releaseSessions ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) List < String > sessionIDs , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext ) throws AccessDenied , InvalidRegistration , MissingParameters , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; @ WebMethod ( action = "<STR_LIT>" ) @ WebResult ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) @ RequestWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) @ ResponseWrapper ( localName = "<STR_LIT>" , targetNamespace = "<STR_LIT>" , className = "<STR_LIT>" ) public List < Extension > initCookie ( @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) RegistrationContext registrationContext , @ WebParam ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) UserContext userContext ) throws AccessDenied , InvalidRegistration , ModifyRegistrationRequired , OperationFailed , OperationNotSupported , ResourceSuspended ; } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAnyElement ; import javax . xml . bind . annotation . XmlType ; import org . w3c . dom . Element ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) public class ModelTypes { @ XmlAnyElement ( lax = true ) protected Object any ; public Object getAny ( ) { return any ; } public void setAny ( Object value ) { this . any = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) public class RegistrationContext extends RegistrationState { @ XmlElement ( required = true ) protected String registrationHandle ; public String getRegistrationHandle ( ) { return registrationHandle ; } public void setRegistrationHandle ( String value ) { this . registrationHandle = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ModifyRegistration { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected RegistrationData registrationData ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public RegistrationData getRegistrationData ( ) { return registrationData ; } public void setRegistrationData ( RegistrationData value ) { this . registrationData = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class PortletStateChangeRequiredFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . math . BigInteger ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT:index>" } ) public class HandleEventsFailed extends BaseFailed { @ XmlElement ( required = true ) protected List < BigInteger > index ; public List < BigInteger > getIndex ( ) { if ( index == null ) { index = new ArrayList < BigInteger > ( ) ; } return this . index ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class UnsupportedWindowStateFault extends Fault { } </s>
|
<s> @ javax . xml . bind . annotation . XmlSchema ( namespace = "<STR_LIT>" , elementFormDefault = javax . xml . bind . annotation . XmlNsForm . QUALIFIED ) package org . oasis . wsrp . v2 ; </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class ResourceContext extends MimeResponse { } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class MissingParameters extends Exception { private MissingParametersFault faultInfo ; public MissingParameters ( String message , MissingParametersFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public MissingParameters ( String message , MissingParametersFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public MissingParametersFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT:value>" } ) public class LocalizedString { @ XmlElement ( required = true ) protected String value ; @ XmlAttribute ( namespace = "<STR_LIT>" , required = true ) protected String lang ; @ XmlAttribute protected String resourceName ; public String getValue ( ) { return value ; } public void setValue ( String value ) { this . value = value ; } public String getLang ( ) { return lang ; } public void setLang ( String value ) { this . lang = value ; } public String getResourceName ( ) { return resourceName ; } public void setResourceName ( String value ) { this . resourceName = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAnyElement ; import javax . xml . bind . annotation . XmlType ; import org . w3c . dom . Element ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) public class Extension { @ XmlAnyElement ( lax = true ) protected Object any ; public Object getAny ( ) { return any ; } public void setAny ( Object value ) { this . any = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class InvalidCookie extends Exception { private InvalidCookieFault faultInfo ; public InvalidCookie ( String message , InvalidCookieFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public InvalidCookie ( String message , InvalidCookieFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public InvalidCookieFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class OperationNotSupportedFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class InvalidUserCategoryFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; import javax . xml . namespace . QName ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT:description>" , "<STR_LIT:label>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ExtensionDescription { protected List < ExtensionPart > parts ; protected List < QName > aliases ; protected LocalizedString description ; protected LocalizedString label ; protected LocalizedString hint ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected QName name ; public List < ExtensionPart > getParts ( ) { if ( parts == null ) { parts = new ArrayList < ExtensionPart > ( ) ; } return this . parts ; } public List < QName > getAliases ( ) { if ( aliases == null ) { aliases = new ArrayList < QName > ( ) ; } return this . aliases ; } public LocalizedString getDescription ( ) { return description ; } public void setDescription ( LocalizedString value ) { this . description = value ; } public LocalizedString getLabel ( ) { return label ; } public void setLabel ( LocalizedString value ) { this . label = value ; } public LocalizedString getHint ( ) { return hint ; } public void setHint ( LocalizedString value ) { this . hint = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public QName getName ( ) { return name ; } public void setName ( QName value ) { this . name = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlEnum ; import javax . xml . bind . annotation . XmlEnumValue ; import javax . xml . bind . annotation . XmlType ; @ XmlType ( name = "<STR_LIT>" ) @ XmlEnum public enum CookieProtocol { @ XmlEnumValue ( "<STR_LIT:none>" ) NONE ( "<STR_LIT:none>" ) , @ XmlEnumValue ( "<STR_LIT>" ) PER_USER ( "<STR_LIT>" ) , @ XmlEnumValue ( "<STR_LIT>" ) PER_GROUP ( "<STR_LIT>" ) ; private final String value ; CookieProtocol ( String v ) { value = v ; } public String value ( ) { return value ; } public static CookieProtocol fromValue ( String v ) { for ( CookieProtocol c : CookieProtocol . values ( ) ) { if ( c . value . equals ( v ) ) { return c ; } } throw new IllegalArgumentException ( v ) ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class BlockingInteractionResponse { protected UpdateResponse updateResponse ; protected String redirectURL ; protected List < Extension > extensions ; public UpdateResponse getUpdateResponse ( ) { return updateResponse ; } public void setUpdateResponse ( UpdateResponse value ) { this . updateResponse = value ; } public String getRedirectURL ( ) { return redirectURL ; } public void setRedirectURL ( String value ) { this . redirectURL = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class ExportedPortlet { @ XmlElement ( required = true ) protected byte [ ] exportData ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected String portletHandle ; public byte [ ] getExportData ( ) { return exportData ; } public void setExportData ( byte [ ] value ) { this . exportData = ( ( byte [ ] ) value ) ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getPortletHandle ( ) { return portletHandle ; } public void setPortletHandle ( String value ) { this . portletHandle = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class UnsupportedWindowState extends Exception { private UnsupportedWindowStateFault faultInfo ; public UnsupportedWindowState ( String message , UnsupportedWindowStateFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public UnsupportedWindowState ( String message , UnsupportedWindowStateFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public UnsupportedWindowStateFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class ExportByValueNotSupported extends Exception { private ExportByValueNotSupportedFault faultInfo ; public ExportByValueNotSupported ( String message , ExportByValueNotSupportedFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public ExportByValueNotSupported ( String message , ExportByValueNotSupportedFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public ExportByValueNotSupportedFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class ResourceSuspended extends Exception { private ResourceSuspendedFault faultInfo ; public ResourceSuspended ( String message , ResourceSuspendedFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public ResourceSuspended ( String message , ResourceSuspendedFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public ResourceSuspendedFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class InteractionParams { @ XmlElement ( required = true ) protected StateChange portletStateChange ; protected String interactionState ; protected List < NamedString > formParameters ; protected List < UploadContext > uploadContexts ; protected List < Extension > extensions ; public StateChange getPortletStateChange ( ) { return portletStateChange ; } public void setPortletStateChange ( StateChange value ) { this . portletStateChange = value ; } public String getInteractionState ( ) { return interactionState ; } public void setInteractionState ( String value ) { this . interactionState = value ; } public List < NamedString > getFormParameters ( ) { if ( formParameters == null ) { formParameters = new ArrayList < NamedString > ( ) ; } return this . formParameters ; } public List < UploadContext > getUploadContexts ( ) { if ( uploadContexts == null ) { uploadContexts = new ArrayList < UploadContext > ( ) ; } return this . uploadContexts ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class HandleEvents { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true ) protected RuntimeContext runtimeContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true ) protected MarkupParams markupParams ; @ XmlElement ( required = true ) protected EventParams eventParams ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public RuntimeContext getRuntimeContext ( ) { return runtimeContext ; } public void setRuntimeContext ( RuntimeContext value ) { this . runtimeContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public MarkupParams getMarkupParams ( ) { return markupParams ; } public void setMarkupParams ( MarkupParams value ) { this . markupParams = value ; } public EventParams getEventParams ( ) { return eventParams ; } public void setEventParams ( EventParams value ) { this . eventParams = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlSchemaType ; import javax . xml . bind . annotation . XmlType ; import javax . xml . datatype . Duration ; import javax . xml . datatype . XMLGregorianCalendar ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" } ) public class Lifetime { protected List < Extension > extensions ; @ XmlAttribute @ XmlSchemaType ( name = "<STR_LIT>" ) protected XMLGregorianCalendar currentTime ; @ XmlAttribute @ XmlSchemaType ( name = "<STR_LIT>" ) protected XMLGregorianCalendar terminationTime ; @ XmlAttribute protected Duration refreshDuration ; public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public XMLGregorianCalendar getCurrentTime ( ) { return currentTime ; } public void setCurrentTime ( XMLGregorianCalendar value ) { this . currentTime = value ; } public XMLGregorianCalendar getTerminationTime ( ) { return terminationTime ; } public void setTerminationTime ( XMLGregorianCalendar value ) { this . terminationTime = value ; } public Duration getRefreshDuration ( ) { return refreshDuration ; } public void setRefreshDuration ( Duration value ) { this . refreshDuration = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class SetPortletLifetime { @ XmlElement ( required = true ) protected List < PortletContext > portletContext ; protected Lifetime scheduledDestruction ; protected List < Extension > extensions ; public List < PortletContext > getPortletContext ( ) { if ( portletContext == null ) { portletContext = new ArrayList < PortletContext > ( ) ; } return this . portletContext ; } public Lifetime getScheduledDestruction ( ) { return scheduledDestruction ; } public void setScheduledDestruction ( Lifetime value ) { this . scheduledDestruction = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class ImportedPortlet { @ XmlElement ( required = true ) protected String importID ; @ XmlElement ( required = true ) protected PortletContext newPortletContext ; protected List < Extension > extensions ; public String getImportID ( ) { return importID ; } public void setImportID ( String value ) { this . importID = value ; } public PortletContext getNewPortletContext ( ) { return newPortletContext ; } public void setNewPortletContext ( PortletContext value ) { this . newPortletContext = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class CCPPHeaders { protected List < CCPPProfileDiff > profileDiffs ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected String profile ; public List < CCPPProfileDiff > getProfileDiffs ( ) { if ( profileDiffs == null ) { profileDiffs = new ArrayList < CCPPProfileDiff > ( ) ; } return this . profileDiffs ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getProfile ( ) { return profile ; } public void setProfile ( String value ) { this . profile = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class UpdateResponse { protected SessionContext sessionContext ; protected PortletContext portletContext ; protected MarkupContext markupContext ; protected List < Event > events ; protected NavigationalContext navigationalContext ; protected String newWindowState ; protected String newMode ; protected List < Extension > extensions ; public SessionContext getSessionContext ( ) { return sessionContext ; } public void setSessionContext ( SessionContext value ) { this . sessionContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public MarkupContext getMarkupContext ( ) { return markupContext ; } public void setMarkupContext ( MarkupContext value ) { this . markupContext = value ; } public List < Event > getEvents ( ) { if ( events == null ) { events = new ArrayList < Event > ( ) ; } return this . events ; } public NavigationalContext getNavigationalContext ( ) { return navigationalContext ; } public void setNavigationalContext ( NavigationalContext value ) { this . navigationalContext = value ; } public String getNewWindowState ( ) { return newWindowState ; } public void setNewWindowState ( String value ) { this . newWindowState = value ; } public String getNewMode ( ) { return newMode ; } public void setNewMode ( String value ) { this . newMode = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class OperationNotSupported extends Exception { private OperationNotSupportedFault faultInfo ; public OperationNotSupported ( String message , OperationNotSupportedFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public OperationNotSupported ( String message , OperationNotSupportedFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public OperationNotSupportedFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class CopiedPortlet { @ XmlElement ( required = true ) protected PortletContext newPortletContext ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected String fromPortletHandle ; public PortletContext getNewPortletContext ( ) { return newPortletContext ; } public void setNewPortletContext ( PortletContext value ) { this . newPortletContext = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getFromPortletHandle ( ) { return fromPortletHandle ; } public void setFromPortletHandle ( String value ) { this . fromPortletHandle = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class SetPortletsLifetimeResponse { protected List < PortletLifetime > updatedPortlet ; protected List < FailedPortlets > failedPortlets ; protected ResourceList resourceList ; protected List < Extension > extensions ; public List < PortletLifetime > getUpdatedPortlet ( ) { if ( updatedPortlet == null ) { updatedPortlet = new ArrayList < PortletLifetime > ( ) ; } return this . updatedPortlet ; } public List < FailedPortlets > getFailedPortlets ( ) { if ( failedPortlets == null ) { failedPortlets = new ArrayList < FailedPortlets > ( ) ; } return this . failedPortlets ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class RegistrationData { @ XmlElement ( required = true ) protected String consumerName ; @ XmlElement ( required = true ) protected String consumerAgent ; protected boolean methodGetSupported ; protected List < String > consumerModes ; protected List < String > consumerWindowStates ; protected List < String > consumerUserScopes ; protected List < ExtensionDescription > extensionDescriptions ; protected List < Property > registrationProperties ; protected ResourceList resourceList ; protected List < Extension > extensions ; public String getConsumerName ( ) { return consumerName ; } public void setConsumerName ( String value ) { this . consumerName = value ; } public String getConsumerAgent ( ) { return consumerAgent ; } public void setConsumerAgent ( String value ) { this . consumerAgent = value ; } public boolean isMethodGetSupported ( ) { return methodGetSupported ; } public void setMethodGetSupported ( boolean value ) { this . methodGetSupported = value ; } public List < String > getConsumerModes ( ) { if ( consumerModes == null ) { consumerModes = new ArrayList < String > ( ) ; } return this . consumerModes ; } public List < String > getConsumerWindowStates ( ) { if ( consumerWindowStates == null ) { consumerWindowStates = new ArrayList < String > ( ) ; } return this . consumerWindowStates ; } public List < String > getConsumerUserScopes ( ) { if ( consumerUserScopes == null ) { consumerUserScopes = new ArrayList < String > ( ) ; } return this . consumerUserScopes ; } public List < ExtensionDescription > getExtensionDescriptions ( ) { if ( extensionDescriptions == null ) { extensionDescriptions = new ArrayList < ExtensionDescription > ( ) ; } return this . extensionDescriptions ; } public List < Property > getRegistrationProperties ( ) { if ( registrationProperties == null ) { registrationProperties = new ArrayList < Property > ( ) ; } return this . registrationProperties ; } public ResourceList getResourceList ( ) { return resourceList ; } public void setResourceList ( ResourceList value ) { this . resourceList = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class InvalidSessionFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class GetServiceDescription { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; protected List < String > desiredLocales ; protected List < String > portletHandles ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public List < String > getDesiredLocales ( ) { if ( desiredLocales == null ) { desiredLocales = new ArrayList < String > ( ) ; } return this . desiredLocales ; } public List < String > getPortletHandles ( ) { if ( portletHandles == null ) { portletHandles = new ArrayList < String > ( ) ; } return this . portletHandles ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class CacheControl { protected int expires ; @ XmlElement ( required = true ) protected String userScope ; protected String validateTag ; protected List < Extension > extensions ; public int getExpires ( ) { return expires ; } public void setExpires ( int value ) { this . expires = value ; } public String getUserScope ( ) { return userScope ; } public void setUserScope ( String value ) { this . userScope = value ; } public String getValidateTag ( ) { return validateTag ; } public void setValidateTag ( String value ) { this . validateTag = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . ws . WebFault ; @ WebFault ( name = "<STR_LIT>" , targetNamespace = "<STR_LIT>" ) public class OperationFailed extends Exception { private OperationFailedFault faultInfo ; public OperationFailed ( String message , OperationFailedFault faultInfo ) { super ( message ) ; this . faultInfo = faultInfo ; } public OperationFailed ( String message , OperationFailedFault faultInfo , Throwable cause ) { super ( message , cause ) ; this . faultInfo = faultInfo ; } public OperationFailedFault getFaultInfo ( ) { return faultInfo ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class ImportPortlet { @ XmlElement ( required = true ) protected byte [ ] exportData ; protected List < Extension > extensions ; @ XmlAttribute ( required = true ) protected String importID ; public byte [ ] getExportData ( ) { return exportData ; } public void setExportData ( byte [ ] value ) { this . exportData = ( ( byte [ ] ) value ) ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } public String getImportID ( ) { return importID ; } public void setImportID ( String value ) { this . importID = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class CopyPortlets { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext toRegistrationContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext toUserContext ; @ XmlElement ( required = true , nillable = true ) protected RegistrationContext fromRegistrationContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext fromUserContext ; @ XmlElement ( required = true ) protected List < PortletContext > fromPortletContexts ; @ XmlElement ( required = true , nillable = true ) protected Lifetime lifetime ; public RegistrationContext getToRegistrationContext ( ) { return toRegistrationContext ; } public void setToRegistrationContext ( RegistrationContext value ) { this . toRegistrationContext = value ; } public UserContext getToUserContext ( ) { return toUserContext ; } public void setToUserContext ( UserContext value ) { this . toUserContext = value ; } public RegistrationContext getFromRegistrationContext ( ) { return fromRegistrationContext ; } public void setFromRegistrationContext ( RegistrationContext value ) { this . fromRegistrationContext = value ; } public UserContext getFromUserContext ( ) { return fromUserContext ; } public void setFromUserContext ( UserContext value ) { this . fromUserContext = value ; } public List < PortletContext > getFromPortletContexts ( ) { if ( fromPortletContexts == null ) { fromPortletContexts = new ArrayList < PortletContext > ( ) ; } return this . fromPortletContexts ; } public Lifetime getLifetime ( ) { return lifetime ; } public void setLifetime ( Lifetime value ) { this . lifetime = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" ) public class UnsupportedLocaleFault extends Fault { } </s>
|
<s> package org . oasis . wsrp . v2 ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class PerformBlockingInteraction { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true ) protected RuntimeContext runtimeContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; @ XmlElement ( required = true ) protected MarkupParams markupParams ; @ XmlElement ( required = true ) protected InteractionParams interactionParams ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public RuntimeContext getRuntimeContext ( ) { return runtimeContext ; } public void setRuntimeContext ( RuntimeContext value ) { this . runtimeContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public MarkupParams getMarkupParams ( ) { return markupParams ; } public void setMarkupParams ( MarkupParams value ) { this . markupParams = value ; } public InteractionParams getInteractionParams ( ) { return interactionParams ; } public void setInteractionParams ( InteractionParams value ) { this . interactionParams = value ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class RuntimeContext { @ XmlElement ( required = true ) protected String userAuthentication ; @ XmlElement ( required = true ) protected String portletInstanceKey ; @ XmlElement ( required = true ) protected String namespacePrefix ; protected Templates templates ; protected SessionParams sessionParams ; protected String pageState ; protected String portletStates ; protected List < Extension > extensions ; public String getUserAuthentication ( ) { return userAuthentication ; } public void setUserAuthentication ( String value ) { this . userAuthentication = value ; } public String getPortletInstanceKey ( ) { return portletInstanceKey ; } public void setPortletInstanceKey ( String value ) { this . portletInstanceKey = value ; } public String getNamespacePrefix ( ) { return namespacePrefix ; } public void setNamespacePrefix ( String value ) { this . namespacePrefix = value ; } public Templates getTemplates ( ) { return templates ; } public void setTemplates ( Templates value ) { this . templates = value ; } public SessionParams getSessionParams ( ) { return sessionParams ; } public void setSessionParams ( SessionParams value ) { this . sessionParams = value ; } public String getPageState ( ) { return pageState ; } public void setPageState ( String value ) { this . pageState = value ; } public String getPortletStates ( ) { return portletStates ; } public void setPortletStates ( String value ) { this . portletStates = value ; } public List < Extension > getExtensions ( ) { if ( extensions == null ) { extensions = new ArrayList < Extension > ( ) ; } return this . extensions ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlElement ; import javax . xml . bind . annotation . XmlType ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) public class GetPortletPropertyDescription { @ XmlElement ( required = true , nillable = true ) protected RegistrationContext registrationContext ; @ XmlElement ( required = true ) protected PortletContext portletContext ; @ XmlElement ( required = true , nillable = true ) protected UserContext userContext ; protected List < String > desiredLocales ; public RegistrationContext getRegistrationContext ( ) { return registrationContext ; } public void setRegistrationContext ( RegistrationContext value ) { this . registrationContext = value ; } public PortletContext getPortletContext ( ) { return portletContext ; } public void setPortletContext ( PortletContext value ) { this . portletContext = value ; } public UserContext getUserContext ( ) { return userContext ; } public void setUserContext ( UserContext value ) { this . userContext = value ; } public List < String > getDesiredLocales ( ) { if ( desiredLocales == null ) { desiredLocales = new ArrayList < String > ( ) ; } return this . desiredLocales ; } } </s>
|
<s> package org . oasis . wsrp . v2 ; import java . util . ArrayList ; import java . util . List ; import javax . xml . bind . annotation . XmlAccessType ; import javax . xml . bind . annotation . XmlAccessorType ; import javax . xml . bind . annotation . XmlAnyElement ; import javax . xml . bind . annotation . XmlAttribute ; import javax . xml . bind . annotation . XmlType ; import javax . xml . namespace . QName ; import org . w3c . dom . Element ; @ XmlAccessorType ( XmlAccessType . FIELD ) @ XmlType ( name = "<STR_LIT>" , propOrder = { "<STR_LIT>" , "<STR_LIT>" } ) public class Property { protected String stringValue ; @ XmlAnyElement ( lax = true ) protected List < Object > any ; @ XmlAttribute ( required = true ) protected QName name ; @ XmlAttribute protected QName type ; @ XmlAttribute ( namespace = "<STR_LIT>" ) protected String lang ; public String getStringValue ( ) { return stringValue ; } public void setStringValue ( String value ) { this . stringValue = value ; } public List < Object > getAny ( ) { if ( any == null ) { any = new ArrayList < Object > ( ) ; } return this . any ; } public QName getName ( ) { return name ; } public void setName ( QName value ) { this . name = value ; } public QName getType ( ) { return type ; } public void setType ( QName value ) { this . type = value ; } public String getLang ( ) { return lang ; } public void setLang ( String value ) { this . lang = value ; } } </s>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.