/******************************************************************************* * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved. *******************************************************************************/ package com.att.authz.actions; import com.att.authz.env.AuthzTrans; import com.att.authz.layer.Result; public interface Action { public Result exec(AuthzTrans trans, T ur); }