Examples of IssueTimeType


Examples of oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.IssueTimeType

public class OrderIssueTimeGenerator implements OrderTypeProcessUnit {

    private IssueTimeType issueTimeType;

    public OrderType process(OrderType orderType) throws org.openinvoice.ubl4j.core.common.FailedToProcessException {
        issueTimeType = new IssueTimeType();
        try {
            issueTimeType.setValue(CalendarUtil.toCalendar(new LocalTime()));
        } catch (DatatypeConfigurationException e) {
            throw new org.openinvoice.ubl4j.core.common.FailedToProcessException(e);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.