public abstract class OfferingStrategy extends BOA
BOA
to unite all BOA components.Modifier and Type | Field and Description |
---|---|
protected boolean |
endNegotiation
Boolean to see if endNegotiation is called
|
protected SharedAgentState |
helper
Reference to helper class used if there are dependencies between the
acceptance condition an offering strategy
|
protected BidDetails |
nextBid
The next bid the agent plans to present
|
protected OMStrategy |
omStrategy
Reference to the opponent model strategy
|
protected OpponentModel |
opponentModel
Reference to the opponent model
|
negotiationSession
Constructor and Description |
---|
OfferingStrategy() |
Modifier and Type | Method and Description |
---|---|
abstract BidDetails |
determineNextBid()
Determines the next bid the agent will offer to the opponent
|
abstract BidDetails |
determineOpeningBid()
Determines the first bid to be offered by the agent
|
SharedAgentState |
getHelper()
Return the Helper-object.
|
BidDetails |
getNextBid() |
void |
init(NegotiationSession negotiationSession,
OpponentModel opponentModel,
OMStrategy omStrategy,
java.util.Map<java.lang.String,java.lang.Double> parameters)
Initializes the offering strategy.
|
boolean |
isEndNegotiation() |
java.io.Serializable |
loadData()
Method used to load the saved object, possibly created in a previous
negotiation session.
|
void |
setNextBid(BidDetails nextBid)
Set the next bid of the agent.
|
void |
storeData(java.io.Serializable object)
Method used to store data that should be accessible in the next
negotiation session on the same scenario.
|
endSession, getName, getParameters, getParameterSpec, init
protected BidDetails nextBid
protected OpponentModel opponentModel
protected OMStrategy omStrategy
protected SharedAgentState helper
protected boolean endNegotiation
public void init(NegotiationSession negotiationSession, OpponentModel opponentModel, OMStrategy omStrategy, java.util.Map<java.lang.String,java.lang.Double> parameters) throws java.lang.Exception
negotiationSession
- state of the negotiation.opponentModel
- opponent model which may be used.omStrategy
- opponent model strategy which may be used.parameters
- optional parameters for the offering strategy.java.lang.Exception
- if the offering strategy fails to initialize.public abstract BidDetails determineOpeningBid()
public abstract BidDetails determineNextBid()
public BidDetails getNextBid()
public void setNextBid(BidDetails nextBid)
nextBid
- to offer to the opponent.public SharedAgentState getHelper()
public boolean isEndNegotiation()
public final void storeData(java.io.Serializable object)
BOA
public final java.io.Serializable loadData()
BOA