Package org.servicemix.ws.xmlbeans.rm

Examples of org.servicemix.ws.xmlbeans.rm.CreateSequenceResponseType


            s.expires = convertToLocalTime(createSequence.getExpires());
       
        sequenceStore.create(s);
       
        CreateSequenceResponseDocument responseDoc = CreateSequenceResponseDocument.Factory.newInstance();
        CreateSequenceResponseType response = responseDoc.addNewCreateSequenceResponse();
        Identifier identifier = response.addNewIdentifier();
        identifier.setStringValue(s.identifier);
        if(s.expires!=0)
            response.setExpires(convertToDuration(s.expires));
           
        return null;
    }
View Full Code Here

TOP

Related Classes of org.servicemix.ws.xmlbeans.rm.CreateSequenceResponseType

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.