All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.commerce.frontend.model.Shipment Maven / Gradle / Ivy

There is a newer version: 2024.q3.1
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.commerce.frontend.model;

/**
 * @author Alessio Antonio Rendina
 * @author Alec Sloan
 */
public class Shipment {

	public Shipment(
		String accountName, String address, String channelName,
		String createDateString, String expectedDeliveryDateString,
		String expectedShipDateString, long shipmentId, LabelField status,
		String tracking) {

		_accountName = accountName;
		_address = address;
		_channelName = channelName;
		_createDateString = createDateString;
		_expectedDeliveryDateString = expectedDeliveryDateString;
		_expectedShipDateString = expectedShipDateString;
		_shipmentId = shipmentId;
		_status = status;
		_tracking = tracking;
	}

	public String getAccountName() {
		return _accountName;
	}

	public String getAddress() {
		return _address;
	}

	public String getChannelName() {
		return _channelName;
	}

	public String getCreateDateString() {
		return _createDateString;
	}

	public String getExpectedDeliveryDateString() {
		return _expectedDeliveryDateString;
	}

	public String getExpectedShipDateString() {
		return _expectedShipDateString;
	}

	public long getShipmentId() {
		return _shipmentId;
	}

	public LabelField getStatus() {
		return _status;
	}

	public String getTracking() {
		return _tracking;
	}

	private final String _accountName;
	private final String _address;
	private final String _channelName;
	private final String _createDateString;
	private final String _expectedDeliveryDateString;
	private final String _expectedShipDateString;
	private final long _shipmentId;
	private final LabelField _status;
	private final String _tracking;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy