1 17 package org.alfresco.repo.ownable.impl; 18 19 import org.alfresco.service.cmr.repository.NodeRef; 20 import org.alfresco.service.cmr.security.OwnableService; 21 22 27 public class OwnableServiceNOOPImpl implements OwnableService 28 { 29 30 public OwnableServiceNOOPImpl() 31 { 32 super(); 33 } 34 35 public String getOwner(NodeRef nodeRef) 36 { 37 return null; 39 } 40 41 public void setOwner(NodeRef nodeRef, String userName) 42 { 43 } 45 46 public void takeOwnership(NodeRef nodeRef) 47 { 48 } 50 51 public boolean hasOwner(NodeRef nodeRef) 52 { 53 return false; 55 } 56 57 } 58 | Popular Tags |