InventoryActionService.java

/*
 * Copyright 2020 Global Crop Diversity Trust
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gringlobal.service;

import static org.gringlobal.service.InventoryActionService.*;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;
import lombok.experimental.SuperBuilder;

import org.gringlobal.custom.validation.javax.CodeValueField;
import org.gringlobal.model.InventoryAction;
import org.gringlobal.model.Method;
import org.gringlobal.model.community.CommunityCodeValues;
import org.gringlobal.service.filter.InventoryActionFilter;
import org.gringlobal.service.filter.InventoryFilter;

/**
 * Inventory action service
 */
public interface InventoryActionService extends ActionService<InventoryAction, InventoryActionFilter, InventoryActionRequest, InventoryActionScheduleFilter> {

	@NoArgsConstructor
	@SuperBuilder
	public static class InventoryActionRequest extends ActionService.ActionRequest {
		public Double quantity;
		public Method method;

		@CodeValueField(CommunityCodeValues.UNIT_OF_QUANTITY)
		public String quantityUnitCode;

		@CodeValueField(CommunityCodeValues.GERMPLASM_FORM)
		public String formCode;
	}

	@Setter
	@Getter
	@Accessors(fluent = true)
	public static class InventoryActionScheduleFilter extends ActionService.ActionScheduleFilter<InventoryAction> {
		private static final long serialVersionUID = -4364656770058858145L;
		public InventoryFilter inventory;
	}
}