Package cu.ftpd.user.userbases.changetracking

Examples of cu.ftpd.user.userbases.changetracking.GroupChange


    }

    public void setSlots(int slots, boolean propagate) {
        this.slots = slots;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.Slots, name, slots));
        }
    }
View Full Code Here


    }

    public void setLeechSlots(int leechSlots, boolean propagate) {
        this.leechSlots = leechSlots;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.LeechSlots, name, leechSlots));
        }
    }
View Full Code Here

    }

    public void setAllotmentSlots(int allotmentSlots, boolean propagate) {
        this.allotmentSlots = allotmentSlots;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.AllotmentSlots, name, allotmentSlots));
        }
    }
View Full Code Here

    }

    public void setMaxAllotment(long maxAllotment, boolean propagate) {
        this.maxAllotment = maxAllotment;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.MaxAllotment, name, maxAllotment));
        }
    }
View Full Code Here

    }

    public void setDescription(String description, boolean propagate) {
        this.description = description;
        if (propagate) {
            changeTracker.addChange(new GroupChange(GroupChange.Property.Description, name, description));
        }
    }
View Full Code Here

TOP

Related Classes of cu.ftpd.user.userbases.changetracking.GroupChange

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.