Package buri.ddmsence.ddms.security.ism

Examples of buri.ddmsence.ddms.security.ism.SecurityAttributes


   * @param element the XOM element representing this
   * @throws InvalidDDMSException if any required information is missing or malformed
   */
  public ProductionMetric(Element element) throws InvalidDDMSException {
    try {
      _securityAttributes = new SecurityAttributes(element);
      setXOMElement(element, true);
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here


        if (!Util.isEmpty(ntkDESVersion)) {
          _ntkDESVersion = Integer.valueOf(ntkDESVersion);
        }
      }
      _noticeAttributes = new NoticeAttributes(element);
      _securityAttributes = new SecurityAttributes(element);
      _extensibleAttributes = new ExtensibleAttributes(element);

      DDMSVersion version = getDDMSVersion();

      // Metacard Set
View Full Code Here

      Elements values = element.getChildElements(Profile.getName(getDDMSVersion()), getNamespace());
      _profiles = new ArrayList<Profile>();
      for (int i = 0; i < values.size(); i++) {
        _profiles.add(new Profile(values.get(i)));
      }
      _securityAttributes = new SecurityAttributes(element);
      validate();
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

        Element verticalExtentElement = extElement.getFirstChildElement(VerticalExtent.getName(version),
          getNamespace());
        if (verticalExtentElement != null)
          _verticalExtent = new VerticalExtent(verticalExtentElement);
      }
      _securityAttributes = new SecurityAttributes(element);
      validate();
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

   * @param element the XOM element representing this
   * @throws InvalidDDMSException if any required information is missing or malformed
   */
  public VirtualCoverage(Element element) throws InvalidDDMSException {
    try {
      _securityAttributes = new SecurityAttributes(element);
      setXOMElement(element, true);
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

      Elements notices = element.getChildElements(Notice.getName(getDDMSVersion()),
        getDDMSVersion().getIsmNamespace());
      for (int i = 0; i < notices.size(); i++) {
        _notices.add(new Notice(notices.get(i)));
      }
      _securityAttributes = new SecurityAttributes(element);
      validate();
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

          getNamespace());
        for (int i = 0; i < actors.size(); i++) {
          _nonStateActors.add(new NonStateActor(actors.get(i)));
        }
      }
      _securityAttributes = new SecurityAttributes(element);
      validate();
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

      Element accessElement = element.getFirstChildElement(Access.getName(getDDMSVersion()),
        getDDMSVersion().getNtkNamespace());
      if (accessElement != null)
        _access = new Access(accessElement);
      _securityAttributes = new SecurityAttributes(element);
      validate();
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

   * @throws InvalidDDMSException if any required information is missing or malformed
   */
  public Link(Element element) throws InvalidDDMSException {
    try {
      _xlinkAttributes = new XLinkAttributes(element);
      _securityAttributes = new SecurityAttributes(element);
      setXOMElement(element, true);
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

        }
      }
      Element profileList = element.getFirstChildElement(ProfileList.getName(getDDMSVersion()), getNamespace());
      if (profileList != null)
        _profileList = new ProfileList(profileList);
      _securityAttributes = new SecurityAttributes(element);
      validate();
    }
    catch (InvalidDDMSException e) {
      e.setLocator(getQualifiedName());
      throw (e);
View Full Code Here

TOP

Related Classes of buri.ddmsence.ddms.security.ism.SecurityAttributes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.