01: /*
02: * Copyright (c) 2007, Your Corporation. All Rights Reserved.
03: */
04:
05: package org.jboss.portal.registration;
06:
07: import javax.xml.namespace.QName;
08:
09: /**
10: * @author <a href="mailto:chris.laprun@jboss.com">Chris Laprun</a>
11: * @version $Revision: 9177 $
12: * @since 2.6.3
13: */
14: public interface PropertyDescription {
15: QName getName();
16:
17: QName getType();
18: }
|