Package org.oasis_open.docs.wsrf.r_2

Examples of org.oasis_open.docs.wsrf.r_2.ResourceUnknownFaultType


            @WebParam(name = "SubscriptionPolicy", targetNamespace = "http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd")
            Object subscriptionPolicy,
            @WebParam(name = "InitialTerminationTime", targetNamespace = "http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd")
            XMLGregorianCalendar terminationTime) throws ResourceUnknownFault, SubscribeCreationFailedFault {
       
        ResourceUnknownFaultType ru = new ResourceUnknownFaultType();
        ErrorCode code = new ErrorCode();
        code.setDialect("en");
        ru.setErrorCode(code);
       
        throw new ResourceUnknownFault("Foo", ru);
    }
View Full Code Here


          log.debug("Error closing session", inner);
        } finally {
          session = null;
        }
      }
      ResourceUnknownFaultType fault = new ResourceUnknownFaultType();
      throw new ResourceUnknownFault("Unable to retrieve messages", fault, e);
    } catch (JAXBException e) {
      log.info("Error retrieving messages", e);
      ResourceUnknownFaultType fault = new ResourceUnknownFaultType();
      throw new ResourceUnknownFault("Unable to retrieve messages", fault, e);
    }
  }
View Full Code Here

TOP

Related Classes of org.oasis_open.docs.wsrf.r_2.ResourceUnknownFaultType

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.