Uses of Interface
org.ogf.graap.wsag.api.Agreement

Packages that use Agreement
org.ogf.graap.wsag.api   
org.ogf.graap.wsag.api.types   
org.ogf.graap.wsag.client.api.local   
org.ogf.graap.wsag.samples   
org.ogf.graap.wsag.samples.actions   
org.ogf.graap.wsag.samples.pendingagreement   
org.ogf.graap.wsag.samples.site   
org.ogf.graap.wsag.server.actions   
org.ogf.graap.wsag.server.actions.impl   
org.ogf.graap.wsag.server.api   
org.ogf.graap.wsag.server.api.impl   
org.ogf.graap.wsag.server.engine   
org.ogf.graap.wsag.server.monitoring   
org.ogf.graap.wsag.server.persistence   
org.ogf.graap.wsag.server.persistence.impl   
org.ogf.graap.wsag.wsrf.impl   
org.ogf.graap.wsag.wsrf.persistence   
 

Uses of Agreement in org.ogf.graap.wsag.api
 

Methods in org.ogf.graap.wsag.api that return Agreement
 Agreement AgreementFactory.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement based on an offer.
 Agreement AgreementFactory.createPendingAgreement(AgreementOffer offer, PendingAgreementListener listener, Map<String,Object> context)
          Creates a new pending agreement based on an offer.
 

Uses of Agreement in org.ogf.graap.wsag.api.types
 

Classes in org.ogf.graap.wsag.api.types that implement Agreement
 class AbstractAgreementType
          Abstract implementation of an agreement.
 class AgreementDelegator
          Default implementation of an agreement delegator.
 

Methods in org.ogf.graap.wsag.api.types that return Agreement
protected  Agreement AgreementDelegator.getDelegator()
          Returns the delegation target of this instance.
 

Methods in org.ogf.graap.wsag.api.types with parameters of type Agreement
protected  void AgreementDelegator.setDelegator(Agreement delegator)
          Sets the delegation target for this instance.
 

Constructors in org.ogf.graap.wsag.api.types with parameters of type Agreement
AgreementDelegator(Agreement agreement)
          Creates a new instance of the delegator.
 

Uses of Agreement in org.ogf.graap.wsag.client.api.local
 

Constructors in org.ogf.graap.wsag.client.api.local with parameters of type Agreement
LocalAgreementClient(Agreement agreement)
          Creates a new local agreement instance using the given agreement object.
LocalAgreementFactoryClient(AgreementFactory factory, Agreement[] source)
           
 

Uses of Agreement in org.ogf.graap.wsag.samples
 

Classes in org.ogf.graap.wsag.samples that implement Agreement
 class SampleMonitoredAgreement
          SampleMonitorableAgreement
 

Methods in org.ogf.graap.wsag.samples that return Agreement
 Agreement SampleMonitoredAgreementAction.createAgreement(AgreementOffer offer)
          Compatibility method to support old agreement actions.
 Agreement Sample2CreateAgreementAction.createAgreement(AgreementOffer offer)
          Compatibility method to support old agreement actions.
 Agreement Sample1CreateAgreementAction.createAgreement(AgreementOffer offer)
          Compatibility method to support old agreement actions.
 Agreement SampleAgreementFactory.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Deprecated. Creates a new agreement based on an offer.
 Agreement SampleAgreementFactory.createPendingAgreement(AgreementOffer offer, PendingAgreementListener listener, Map<String,Object> context)
          Deprecated.  
 

Uses of Agreement in org.ogf.graap.wsag.samples.actions
 

Classes in org.ogf.graap.wsag.samples.actions that implement Agreement
 class SampleAgreement
          SampleAgreement
 

Methods in org.ogf.graap.wsag.samples.actions that return Agreement
 Agreement SampleCreateAgreementAction.createAgreement(AgreementOffer offer)
          Compatibility method to support old agreement actions.
 

Uses of Agreement in org.ogf.graap.wsag.samples.pendingagreement
 

Classes in org.ogf.graap.wsag.samples.pendingagreement that implement Agreement
 class PendingAgreement
          Sample implementation of a pending agreement.
 

Methods in org.ogf.graap.wsag.samples.pendingagreement that return Agreement
 Agreement CreatePendingAgreementAction.createAgreement(AgreementOffer offer)
          Example for a long lasting agreement creation process.
 Agreement CreatePendingAgreementWithNotificationAction.createAgreement(AgreementOffer offer, Map<String,Object> invocationCtx)
          Example for a long lasting agreement creation process.
 

Uses of Agreement in org.ogf.graap.wsag.samples.site
 

Classes in org.ogf.graap.wsag.samples.site that implement Agreement
 class ExampleAgreement
          This agreement implementation is used as example for the project documentation.
 

Methods in org.ogf.graap.wsag.samples.site that return Agreement
 Agreement ExampleCreateAgreementAction.createAgreement(AgreementOffer offer)
          The createAgreement() method is invoked when an offer was received that is based on the template associated with this action.
 

Uses of Agreement in org.ogf.graap.wsag.server.actions
 

Methods in org.ogf.graap.wsag.server.actions that return Agreement
 Agreement AbstractCreateAgreementAction.createAgreement(AgreementOffer offer)
          Compatibility method to support old agreement actions.
 Agreement ICreateAgreementAction.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement based on an offer.
 Agreement AbstractCreateAgreementAction.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement based on an offer.
 

Uses of Agreement in org.ogf.graap.wsag.server.actions.impl
 

Methods in org.ogf.graap.wsag.server.actions.impl that return Agreement
 Agreement AgreementFactoryAction.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Invokes the create agreement strategy implemented by the ICreateAgreementAction which is set for this action
 

Uses of Agreement in org.ogf.graap.wsag.server.api
 

Methods in org.ogf.graap.wsag.server.api that return Agreement
 Agreement IAgreementContext.getAgreement()
           
 

Uses of Agreement in org.ogf.graap.wsag.server.api.impl
 

Classes in org.ogf.graap.wsag.server.api.impl that implement Agreement
 class PendingAgreementFacade
          PendingAgreementFacade
 class PendingAgreementImpl
          PendingAgreementImpl Simple container type for a pending agreement instance.
 

Methods in org.ogf.graap.wsag.server.api.impl that return Agreement
 Agreement AgreementFactoryFacade.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement based on an offer.
 Agreement AgreementFactoryFacade.createPendingAgreement(AgreementOffer offer, PendingAgreementListener listener, Map<String,Object> context)
          Creates a new pending agreement based on an offer.
 Agreement AgreementContext.getAgreement()
          
 

Constructors in org.ogf.graap.wsag.server.api.impl with parameters of type Agreement
AgreementContext(Agreement agreement)
          Creates a new execution context for an agreement instance.
 

Uses of Agreement in org.ogf.graap.wsag.server.engine
 

Methods in org.ogf.graap.wsag.server.engine that return Agreement
 Agreement GenericAgreementFactory.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement based on an offer.
 Agreement GenericAgreementFactory.createPendingAgreement(AgreementOffer offer, PendingAgreementListener listener, Map<String,Object> context)
           
 

Uses of Agreement in org.ogf.graap.wsag.server.monitoring
 

Classes in org.ogf.graap.wsag.server.monitoring that implement Agreement
 class MonitorableAgreement
          MonitorableAgreement Supports monitoring of service terms, agreement state and automatic evaluation of guarantee terms.
 class SimpleMonitoredAgreement
          TODO: use MonitorableAgreement as default agreement implementation This class will be used in future as default agreement implementation.
 

Methods in org.ogf.graap.wsag.server.monitoring that return Agreement
 Agreement MonitorableAgreement.getAgreementInstance()
          
 

Constructors in org.ogf.graap.wsag.server.monitoring with parameters of type Agreement
MonitorableAgreement(Agreement agreement)
          Creates a new instance of a monitorable agreement.
 

Uses of Agreement in org.ogf.graap.wsag.server.persistence
 

Subinterfaces of Agreement in org.ogf.graap.wsag.server.persistence
 interface PersistentAgreement
          PersistentAgreement
 

Methods in org.ogf.graap.wsag.server.persistence that return Agreement
 Agreement PersistentAgreement.getAgreement()
           
 

Methods in org.ogf.graap.wsag.server.persistence with parameters of type Agreement
 void PersistentAgreementFactory.addAgreement(Agreement agreement, EndpointReferenceType epr)
          Deprecated. use createAgreement method of AgreementFactory interface instead
 

Uses of Agreement in org.ogf.graap.wsag.server.persistence.impl
 

Classes in org.ogf.graap.wsag.server.persistence.impl that implement Agreement
 class DatabasePersistentAgreement
           Database-related implementation of the PersistentAgreement interface.
 class SimplePersistentAgreement
          Default implementation of a persistent agreement.
 

Methods in org.ogf.graap.wsag.server.persistence.impl that return Agreement
 Agreement AbstractPersistentAgreementFactory.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement instance.
 Agreement AbstractPersistentAgreementFactory.createPendingAgreement(AgreementOffer offer, PendingAgreementListener listener, Map<String,Object> context)
           
 Agreement SimplePersistentAgreement.getAgreement()
          
 Agreement DatabasePersistentAgreement.getAgreement()
          
 Agreement DatabasePersistentAgreement.getAgreementInstance()
          
 

Methods in org.ogf.graap.wsag.server.persistence.impl with parameters of type Agreement
 void AbstractPersistentAgreementFactory.addAgreement(Agreement agreement, EndpointReferenceType agreementEpr)
          Persists a new created agreement instance
static PersistentAgreementContainer PersistentAgreementContainer.createContainer(Agreement agreement, String factoryId)
          Creates a new persistent container that stores the agreement properties document and the agreement execution context.
static DatabasePersistentAgreement DatabasePersistentAgreement.insertAgreement(Agreement agreement, String agreementFactoryId)
          Inserts an agreement in the database.
protected  PersistentAgreement SimplePersistentAgreementFactory.persistAgreement(Agreement agreement)
          This agreement factory does not support persistence.
 PersistentAgreement DatabasePersistentAgreementFactory.persistAgreement(Agreement agreement)
           
protected abstract  PersistentAgreement AbstractPersistentAgreementFactory.persistAgreement(Agreement agreement)
          Persists the given agreement instance.
 

Constructors in org.ogf.graap.wsag.server.persistence.impl with parameters of type Agreement
PersistentAgreementContainer(Agreement agreement, String factoryId)
          Creates a new PersistentAgreementContainer for the given agreement and agreement factory id.
SimplePersistentAgreement(Agreement agreement, EndpointReferenceType epr)
           
 

Uses of Agreement in org.ogf.graap.wsag.wsrf.impl
 

Methods in org.ogf.graap.wsag.wsrf.impl that return Agreement
protected  Agreement AgreementFactoryCapability.createPendingAgreementImpl(AgreementOffer offer, AgreementAcceptanceClient acceptanceClient, AgreementWsResource agreementResource)
          Creates a new pending agreement instance.
 Agreement AgreementWsResource.getAgreement()
           
 

Methods in org.ogf.graap.wsag.wsrf.impl with parameters of type Agreement
protected  EndpointReferenceType AgreementFactoryCapability.addNewAgreement(Agreement agreement, AgreementWsResource agreementInstance)
          Creates a new Agreement WS-Resource and returns the EPR.
 void AgreementWsResource.setAgreement(Agreement agreement)
           
 

Uses of Agreement in org.ogf.graap.wsag.wsrf.persistence
 

Classes in org.ogf.graap.wsag.wsrf.persistence that implement Agreement
 class WsDatabasePersistentAgreement
          Web service based extension of the DatabasePersistentAgreement.
 

Methods in org.ogf.graap.wsag.wsrf.persistence that return Agreement
 Agreement WsDatabaseAgreementFactory.createAgreement(AgreementOffer offer, Map<String,Object> context)
          Creates a new agreement based on an offer.
 Agreement WsDatabaseAgreementFactory.createPendingAgreement(AgreementOffer offer, PendingAgreementListener listener, Map<String,Object> context)
          Creates a new pending agreement based on an offer.
 Agreement WsDatabasePersistentAgreement.getAgreement()
           
 

Methods in org.ogf.graap.wsag.wsrf.persistence with parameters of type Agreement
 void WsDatabaseAgreementFactory.addAgreement(Agreement agreement, EndpointReferenceType epr)
          Deprecated.  
 



Copyright © 2008-2012. All Rights Reserved.