Package org.apache.ws.resource.example

Examples of org.apache.ws.resource.example.StateInfo


                                      org.apache.xmlbeans.XmlObject bean )
   {
      // [mod] added logic to if blocks
      if ( qname.equals( PropertyQNames.STATEINFO ) )
      {
         final StateInfo backendStateInfo = new StateInfo(  );
         backendStateInfo.setState( ( (StateInfoDocument) bean ).getStateInfo(  ).getState(  ) );
         backendStateInfo.setTimeEntered( ( (StateInfoDocument) bean ).getStateInfo(  ).getTimeEntered(  ) );
         m_backendDiskBean.addStateInfo( backendStateInfo );
      }
      else if ( qname.equals( PropertyQNames.BLOCKSIZE ) )
      {
         m_backendDiskBean.setBlockSize( ( (BlockSizeDocument) bean ).getBlockSize(  ) );
View Full Code Here

TOP

Related Classes of org.apache.ws.resource.example.StateInfo

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.