package com.hqyg.disjob.register.auth;
import org.apache.zookeeper.data.ACL;
import org.apache.zookeeper.data.Id;
public class EjobOwnerACL extends ACL{
public EjobOwnerACL(String adminAccount) {
super(AuthConstants.PERMS_ALL, new Id(AuthConstants.SCHEME, AuthUtil.algorithm(adminAccount)));
}
}