Package org.apache.ws.resource.properties

Examples of org.apache.ws.resource.properties.SushiResourceContext


    * DOCUMENT_ME
    */
   public void testGetMultipleResourcePropertiesCallback(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      SushiPlate       plate        = new SushiPlate(  );
      SushiCallback    callback     = new SushiCallback( plate );
      SushiResource    resource     = (SushiResource) m_resourceContext.getResource(  );
      ResourceProperty resourceProp = resource.getResourcePropertySet(  ).get( SushiPropertyQNames.EBI );
      resourceProp.setCallback( callback );
View Full Code Here


    * @throws Exception DOCUMENT_ME
    */
   public void testQueryOpenContent(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      insertXsdAnyPropElem(  );
      QueryResourcePropertiesResponseDocument.QueryResourcePropertiesResponse queryResourcePropertiesResponse =
         queryResourceProperties( "*" );
      XmlObject[]                                                             allPropElems =
         XmlBeanUtils.getChildElements( queryResourcePropertiesResponse );
View Full Code Here

    * DOCUMENT_ME
    */
   public void testQueryResourceProperties(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      QueryResourcePropertiesResponseDocument.QueryResourcePropertiesResponse queryResourcePropertiesResponse =
         queryResourceProperties( "*" );
      XmlObject[]                                                             allPropElems =
         XmlBeanUtils.getChildElements( queryResourcePropertiesResponse );
      assertNotNull( allPropElems );
View Full Code Here

    * DOCUMENT_ME
    */
   public void testQueryResourcePropertiesCallback(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );

      //build callback obj
      SushiPlate    plate    = new SushiPlate(  );
      SushiCallback callback = new SushiCallback( plate );

View Full Code Here

    * DOCUMENT_ME
    */
   public void testQueryWithInvalidDialect(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      try
      {
         QueryResourcePropertiesResponseDocument.QueryResourcePropertiesResponse response =
            queryResourceProperties( "*",
                                     new URI( "http://blah.com/NotADialect" ) );
View Full Code Here

    * DOCUMENT_ME
    */
   public void testQueryWithInvalidExpr(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      try
      {
         QueryResourcePropertiesResponseDocument.QueryResourcePropertiesResponse response =
            queryResourceProperties( "\\/\\/\\/\\/\\/" );
         fail( ( response != null ) ? "Expected fault, but received response." : null );
View Full Code Here

    * Tests that a GetRP request for an existing prop returns a GetRPResponse elem containing that prop.
    */
   public void testGetExistingProp(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      GetResourcePropertyResponseDocument.GetResourcePropertyResponse response =
         getResourceProperty( SushiPropertyQNames.IKA );
      XmlObject[]                                                     ebiPropElems =
         XmlBeanUtils.getChildElements( response, SushiPropertyQNames.IKA );
      assertNotNull( ebiPropElems );
View Full Code Here

    * wether or not the RP doc permits open content.
    */
   public void testGetInvalidProp(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext( true );
      assertGetRequestForInvalidPropThrowsFault(  );
      m_resourceContext = new SushiResourceContext( false );
      assertGetRequestForInvalidPropThrowsFault(  );
   }
View Full Code Here

    * Tests that a GetRP request for a non-existing optional prop returns an empty GetRPResponse elem.
    */
   public void testGetNonexistingOptionalProp(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );
      GetResourcePropertyResponseDocument.GetResourcePropertyResponse response =
         getResourceProperty( SushiPropertyQNames.UNI );
      XmlObject[]                                                     uniPropElems =
         XmlBeanUtils.getChildElements( response, SushiPropertyQNames.UNI );
      assertNotNull( uniPropElems );
View Full Code Here

    * requested property.
    */
   public void testGetPropertyTriggersCallback(  )
   throws Exception
   {
      m_resourceContext = new SushiResourceContext(  );

      // create and register callback object
      SushiPlate       plate        = new SushiPlate(  );
      SushiCallback    callback     = new SushiCallback( plate );
      SushiResource    resource     = (SushiResource) m_resourceContext.getResource(  );
View Full Code Here

TOP

Related Classes of org.apache.ws.resource.properties.SushiResourceContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.