LotHoldActionContextValue.java

package com.mycim.valueobject.prp;

import com.mycim.framework.utils.lang.StringUtils;
import com.mycim.framework.utils.lang.math.NumberUtils;

/**
 * @author Zh-H
 */
public class LotHoldActionContextValue extends AbstractContextValue {

    public LotHoldActionContextValue() {
        super();
    }

    /**
     * @param contextRrn
     */
    public LotHoldActionContextValue(long contextRrn) {
        super(contextRrn);
    }

    /**
     * @return the endRouteRrn
     */
    public Long getUserGroup() {
        return NumberUtils.createLong(StringUtils.trimToNull(this.getResultValue1()));
    }

}