/* * Copyright 2000-2013 Enonic AS * http://www.enonic.com/license */ package com.enonic.cms.api.client.model; public class LeaveGroupsParams extends AbstractParams { private static final long serialVersionUID = 1917383978659488375L; /** * Specify user either by qualified name ([userStoreKey:]<user name>) or key. If null the logged in user is used. * When specifying a key, prefix with a hash (user = "#xxx"). */ public String user = null; /** * Specify group either by qualified name ([userStoreKey:]<group name>) or key. When specifying a key, prefix with a hash (group = * #xxx). */ public String group = null; /** * Specify groups to leave. Use same format as above. */ public String[] groupsToLeave = null; }