Package org.globus.wsrf.impl

Examples of org.globus.wsrf.impl.ReflectionResourceProperty


    this.propSet = new SimpleResourcePropertySet(
        MapQNames.RESOURCE_PROPERTIES);

    /* Initialize the RP's */
    try {
      ResourceProperty valueRP = new ReflectionResourceProperty(
          MapQNames.RP_VALUE, "Value", this);
      this.propSet.add(valueRP);
      setValue(0);

      ResourceProperty lastOpRP = new ReflectionResourceProperty(
          MapQNames.RP_LASTOP, "LastOp", this);
      this.propSet.add(lastOpRP);
      setLastOp("NONE");
    } catch (Exception e) {
      throw new RuntimeException(e.getMessage());
View Full Code Here


            ResourceProperty rp = new SimpleResourceProperty(
                              BrokerConstants.RP_CONTEXTUALIZATION_CONTEXT);
            rp.add(null);
            this.propertySet.add(rp);

            rp = new ReflectionResourceProperty(
                    BrokerConstants.RP_CONTEXTUALIZATION_CONTEXT, this);
            this.propertySet.add(rp);

        } catch(Exception e) {
            logger.fatal("",e);
View Full Code Here

TOP

Related Classes of org.globus.wsrf.impl.ReflectionResourceProperty

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.