NamespaceFolder.java 670 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * Licensed Materials - Property of IBM
  3. *
  4. * IBM Cognos Products: CAMAAA
  5. *
  6. * (C) Copyright IBM Corp. 2005, 2012
  7. *
  8. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
  9. * IBM Corp.
  10. */
  11. import com.cognos.CAM_AAA.authentication.INamespaceFolder;
  12. public class NamespaceFolder extends UiClass implements INamespaceFolder
  13. {
  14. /**
  15. * @param theSearchPath
  16. */
  17. public NamespaceFolder(String theSearchPath)
  18. {
  19. super(theSearchPath);
  20. }
  21. /*
  22. * (non-Javadoc)
  23. *
  24. * @see com.cognos.CAM_AAA.authentication.IBaseClass#getHasChildren()
  25. */
  26. public boolean getHasChildren()
  27. {
  28. return true;
  29. }
  30. }