Uses of Class
org.zeroexchange.model.resource.Resource

Packages that use Resource
org.zeroexchange.collaboration.contract.event   
org.zeroexchange.collaboration.contract.flow.assessment   
org.zeroexchange.collaboration.contract.permission   
org.zeroexchange.dao.resource   
org.zeroexchange.model.collaboration   
org.zeroexchange.model.resource   
org.zeroexchange.model.resource.good   
org.zeroexchange.model.resource.money   
org.zeroexchange.model.resource.participant   
org.zeroexchange.model.resource.property   
org.zeroexchange.model.resource.service   
org.zeroexchange.representation   
org.zeroexchange.resource.create   
org.zeroexchange.resource.read   
org.zeroexchange.resource.reconciliation   
org.zeroexchange.resource.reputation   
org.zeroexchange.resource.stock   
org.zeroexchange.resource.tender   
org.zeroexchange.resource.write   
org.zeroexchange.web.components.resource.action   
org.zeroexchange.web.components.resource.list   
org.zeroexchange.web.page.contract   
org.zeroexchange.web.page.contract.context   
 

Uses of Resource in org.zeroexchange.collaboration.contract.event
 

Methods in org.zeroexchange.collaboration.contract.event that return Resource
 Resource ResourceDeleted.getResource()
           
 Resource ResourceChanged.getResource()
           
 Resource ResourceReconciled.getResource()
           
 Resource ResourceSupplyConfirmed.getResource()
           
 

Constructors in org.zeroexchange.collaboration.contract.event with parameters of type Resource
ResourceChanged(Contract contract, Resource resource)
           
ResourceDeleted(Contract contract, Resource resource)
          Constructor.
ResourceReconciled(Contract contract, Resource resource)
          Constructor.
ResourceSupplyConfirmed(Contract contract, Resource resource)
          Constructor.
 

Uses of Resource in org.zeroexchange.collaboration.contract.flow.assessment
 

Methods in org.zeroexchange.collaboration.contract.flow.assessment that return Resource
 Resource AssessmentDescriptor.getResource()
           
 

Methods in org.zeroexchange.collaboration.contract.flow.assessment with parameters of type Resource
 void AssessmentDescriptor.setResource(Resource resource)
           
 

Uses of Resource in org.zeroexchange.collaboration.contract.permission
 

Methods in org.zeroexchange.collaboration.contract.permission with parameters of type Resource
 boolean DAOContractPermissionsInformant.isTendersManagementAllowed(Contract contract, Resource resource)
          Returns true if the tender management is allowed for the user.
 boolean ContractPermissionsInformant.isTendersManagementAllowed(Contract contract, Resource resource)
          Returns true if the tender management is allowed for the user.
 

Uses of Resource in org.zeroexchange.dao.resource
 

Methods in org.zeroexchange.dao.resource that return types with arguments of type Resource
 ProcessorAwareDataSet<Resource> ResourceDAOImpl.getContractResources(Integer contractId)
           
 ProcessorAwareDataSet<Resource> ResourceDAO.getContractResources(Integer contractId)
          Returns contract's resources.
 Class<Resource> ResourceDAOImpl.getEntityClass()
          
 ProcessorAwareDataSet<Resource> ResourceDAOImpl.getUserRelatedResources(int userId)
          Return resources where the current user is the participant.
 ProcessorAwareDataSet<Resource> ResourceDAO.getUserRelatedResources(int userId)
          Return resources where the current user is the participant.
 Collection<Resource> ResourceDAOImpl.getUserResources(int userId, Set<Integer> resourcesIds)
          Return resources belonging to the current user by the resources ids.
 Collection<Resource> ResourceDAO.getUserResources(int userId, Set<Integer> resourcesIds)
          Return resources belonging to the current user by the resources ids.
 

Methods in org.zeroexchange.dao.resource with parameters of type Resource
 SlicingDataSet<Need> NeedDAOImpl.getNeeds(Resource resource, Integer excludedUserId)
          Returns set of the resource tenders.
 SlicingDataSet<Need> NeedDAO.getNeeds(Resource resource, Integer excludedUserId)
          Returns set of the resource tenders.
 SlicingDataSet<Supply> SupplyDAO.getSupplies(Resource resource, Integer excludedUserId)
          Returns set of the resource tenders.
 SlicingDataSet<Supply> SupplyDAOImpl.getSupplies(Resource resource, Integer excludedUserId)
          Returns set of the resource tenders.
 Long ResourceTenderDAO.getTotalTenders(Resource resource, User excludedUser)
           
 Long ResourceTenderDAOImpl.getTotalTenders(Resource resource, User excludedUser)
          
 Long ResourceTenderDAO.getVisitedTendersCount(Resource resource, User user)
          Returns number of unvisited tenders.
 Long ResourceTenderDAOImpl.getVisitedTendersCount(Resource resource, User user)
          Returns number of unvisited tenders.
 

Constructors in org.zeroexchange.dao.resource with parameters of type Resource
ResourceTenderDAOImpl.TendersDataSet(Resource resource, Integer excludedUserId)
           
 

Uses of Resource in org.zeroexchange.model.collaboration
 

Methods in org.zeroexchange.model.collaboration that return types with arguments of type Resource
 Set<Resource> Contract.getResources()
           
 

Method parameters in org.zeroexchange.model.collaboration with type arguments of type Resource
 void Contract.setResources(Set<Resource> resources)
           
 

Uses of Resource in org.zeroexchange.model.resource
 

Method parameters in org.zeroexchange.model.resource with type arguments of type Resource
static String ResourceUtils.getShortSubtype(Class<? extends Resource> resourceClass)
          Returns short name of the resource.
 

Uses of Resource in org.zeroexchange.model.resource.good
 

Subclasses of Resource in org.zeroexchange.model.resource.good
 class GoodResource
           
 

Uses of Resource in org.zeroexchange.model.resource.money
 

Subclasses of Resource in org.zeroexchange.model.resource.money
 class MoneyResource
           
 

Uses of Resource in org.zeroexchange.model.resource.participant
 

Methods in org.zeroexchange.model.resource.participant that return Resource
 Resource ResourceTender.getResource()
           
 

Methods in org.zeroexchange.model.resource.participant with parameters of type Resource
 void ResourceTender.setResource(Resource resource)
           
 

Uses of Resource in org.zeroexchange.model.resource.property
 

Methods in org.zeroexchange.model.resource.property that return Resource
 Resource PropertySpecification.getResource()
           
 

Methods in org.zeroexchange.model.resource.property with parameters of type Resource
 void PropertySpecification.setResource(Resource resource)
           
 

Uses of Resource in org.zeroexchange.model.resource.service
 

Subclasses of Resource in org.zeroexchange.model.resource.service
 class ServiceResource
           
 

Uses of Resource in org.zeroexchange.representation
 

Methods in org.zeroexchange.representation with parameters of type Resource
 String ResourceRepresentation.getRepresentation(Resource resource, int limit)
          Returns string representation of the specified entity.
 

Uses of Resource in org.zeroexchange.resource.create
 

Methods in org.zeroexchange.resource.create with type parameters of type Resource
<T extends Resource>
T
DefaultResourcesFactory.createResource(Class<T> resourceSubclass, Integer ownerId, Integer contractId)
          Creates resource of the specified type.
<T extends Resource>
T
ResourcesFactory.createResource(Class<T> resourceSubclass, Integer ownerId, Integer contractId)
          Creates resource of the specified type.
 

Uses of Resource in org.zeroexchange.resource.read
 

Methods in org.zeroexchange.resource.read with type parameters of type Resource
<T extends Resource>
T
ResourceReader.getResource(Integer resourceId)
          Returns the resource by its id.
<T extends Resource>
T
DAOResourceReader.getResource(Integer resourceId)
          Returns the resource by its id.
 

Methods in org.zeroexchange.resource.read that return types with arguments of type Resource
 SlicingDataSet<Resource> ResourceReader.getContractResources(Integer contractId, SortDescriptor sortDescriptor, Object filter)
          Returns the resource for the specified contract.
 SlicingDataSet<Resource> DAOResourceReader.getContractResources(Integer contractId, SortDescriptor sortDescriptor, Object resourcesFilter)
          Returns the resource for the specified contract.
 SlicingDataSet<Resource> ResourceReader.getUserRelatedResources(int userId, SortDescriptor sortDescriptor, String filterQuery)
          Returns resources where user is participant.
 SlicingDataSet<Resource> DAOResourceReader.getUserRelatedResources(int userId, SortDescriptor sortDescriptor, String filterQuery)
          Returns resources where user is participant.
 Collection<Resource> ResourceReader.getUserResources(int userId, Set<Integer> resourcesIds)
          Returns resources belonging to the current user by their PKs.
 Collection<Resource> DAOResourceReader.getUserResources(int userId, Set<Integer> resourcesIds)
          Returns resources belonging to the current user by their PKs.
 

Methods in org.zeroexchange.resource.read with parameters of type Resource
 BigDecimal DefaultResourceInformant.getConsumeAmount(Resource resource)
          Returns the total confirmed consume amount of the resource.
 BigDecimal ResourceInformant.getConsumeAmount(Resource resource)
          Returns the total confirmed consume amount of the resource.
 BigDecimal DefaultResourceInformant.getProductionHours(Resource resource)
          Returns total production hours of the 'accepted' supplies.
 BigDecimal ResourceInformant.getProductionHours(Resource resource)
          Returns total production hours of the 'accepted' supplies.
 PropertySpecification ResourceReader.getPropertySpecification(Resource resource, String propertyName)
          Returns property specification.
 PropertySpecification DAOResourceReader.getPropertySpecification(Resource resource, String propertyName)
          Returns property specification.
 String DefaultResourceInformant.getResourceUOM(Resource resource)
          Returns UOM's name for the resource.
 String ResourceInformant.getResourceUOM(Resource resource)
          Returns UOM's name for the resource.
 BigDecimal DefaultResourceInformant.getSupplyAmount(Resource resource)
          Returns the total confirmed supply amount of the resource.
 BigDecimal ResourceInformant.getSupplyAmount(Resource resource)
          Returns the total confirmed supply amount of the resource.
 Date DefaultResourceInformant.getSupplyDate(Resource resource)
          Returns resource supply date.
 Date ResourceInformant.getSupplyDate(Resource resource)
          Returns resource supply date.
 DictionaryItem ResourceReader.getUnitOfMeasure(Resource resource)
          Deprecated. 
 DictionaryItem DAOResourceReader.getUnitOfMeasure(Resource resource)
          Deprecated. 
 BigDecimal DefaultResourceInformant.getUserContributionPrice(Resource resource, User user, ZECurrency currency)
          Returns value of the contribution made by the specified user into the specified resource.
 BigDecimal ResourceInformant.getUserContributionPrice(Resource resource, User user, ZECurrency currency)
          Returns value of the contribution made by the specified user into the specified resource.
 ResourceTender DefaultResourceInformant.getUserTender(Resource resource, Integer userId)
          Returns the user's tender.
 ResourceTender ResourceInformant.getUserTender(Resource resource, Integer userId)
          Returns the user's tender.
 BigDecimal DefaultResourceInformant.getValue(Resource resource)
          Returns the 'accepted' resource supply price in the specified currency.
 BigDecimal ResourceInformant.getValue(Resource resource)
          Returns the 'accepted' resource supply price in the specified currency.
 String DefaultResourceInformant.getValueUOM(Resource resource)
           
 String ResourceInformant.getValueUOM(Resource resource)
          Returns UOM's name for the exchange worth of the resource.
 boolean DefaultResourceInformant.hasConsumers(Resource resource, User excludedUser)
          Returns true if the resource has at least one consumer.
 boolean ResourceInformant.hasConsumers(Resource resource, User excludedUser)
          Returns true if the resource has at least one consumer.
 boolean DefaultResourceInformant.hasSuppliers(Resource resource, User excludedUser)
          Returns true if the resource has at least one supplier.
 boolean ResourceInformant.hasSuppliers(Resource resource, User excludedUser)
          Returns true if the resource has at least one supplier.
 boolean DefaultResourceInformant.isAcceptedTendersCountExceeded(Resource resource, Class<? extends ResourceTender> tenderClass)
          Returns true if allowed tenders count is exceeded.
 boolean ResourceInformant.isAcceptedTendersCountExceeded(Resource resource, Class<? extends ResourceTender> clazz)
          Returns true if allowed tenders count is exceeded.
 boolean ResourceReader.isResourceAccepted(Resource resource)
          Returns true if the resource is accepted by the partner of the specified user.
 boolean DAOResourceReader.isResourceAccepted(Resource resource)
          Returns true if the resource is accepted by the partner of the specified user.
 boolean DefaultResourceInformant.isUserConsumer(Resource resource, Integer userId)
          Returns true if the user is the consumer of the specified resource.
 boolean ResourceInformant.isUserConsumer(Resource resource, Integer userId)
          Returns true if the user is the consumer of the specified resource.
 boolean ResourceReader.isUserInRole(Resource resource, TenderType role, User flowUser)
           
 boolean DAOResourceReader.isUserInRole(Resource resource, TenderType role, User flowUser)
          
 boolean ResourceReader.isUserParticipant(Resource resource, Integer currentUserId)
          Returns true if the resource have the tender from the specified user.
 boolean DAOResourceReader.isUserParticipant(Resource resource, Integer currentUserId)
          Returns true if the resource have the tender from the specified user.
 boolean DefaultResourceInformant.isUserSupplier(Resource resource, Integer userId)
          Returns true if the user is the supplier of the specified resource.
 boolean ResourceInformant.isUserSupplier(Resource resource, Integer userId)
          Returns true if the user is the supplier of the specified resource.
 

Method parameters in org.zeroexchange.resource.read with type arguments of type Resource
protected  void DAOResourceReader.addProcessors(ProcessorAwareDataSet<Resource> dataSet, SortDescriptor sortDescriptor, Object resourcesFilter)
          Adds the sort/filtering processors.
 

Uses of Resource in org.zeroexchange.resource.reconciliation
 

Methods in org.zeroexchange.resource.reconciliation with parameters of type Resource
 void Reconciliator.reconcile(Resource resource, User consumer)
          Writes off the cost amount of the unsupplied resource from the supplier and writes off that amount to the consumers.
 void DefaultReconciliator.reconcile(Resource resource, User consumer)
          Writes off the cost amount of the unsupplied resource from the supplier and writes off that amount to the consumers.
 

Uses of Resource in org.zeroexchange.resource.reputation
 

Methods in org.zeroexchange.resource.reputation with parameters of type Resource
 void DefaultResourceAssessor.confirmResourceProvided(Resource resource, User evaluator, String assessmentType, BigDecimal businessQuality, String businessQualityComment)
          Is called when user confirms that resource is provided.
 void ResourceAssessor.confirmResourceProvided(Resource resource, User evaluator, String assessmentType, BigDecimal businessQuality, String businessQualityComment)
          Is called when user confirms that resource is provided.
 

Uses of Resource in org.zeroexchange.resource.stock
 

Methods in org.zeroexchange.resource.stock with parameters of type Resource
 void ResourceStockManager.freeAmount(ResourceTender tender, Resource resource)
          Reserves amount for the specified resource.
 void ServiceStockManager.freeAmount(ResourceTender tender, Resource resource)
          Reserves amount for the specified resource.
 void StockManager.freeAmount(ResourceTender resourceTender, Resource resource)
          Reserves resource amount.
 void LocalCurrencyStockManager.freeAmount(ResourceTender resourceTender, Resource resource)
          Reserves amount for the specified resource.
 void GoodStockManager.freeAmount(ResourceTender tender, Resource resource)
          Reserves amount for the specified resource.
 void DefaultStockManager.freeAmount(ResourceTender resourceTender, Resource resource)
          Reserves resource amount.
 BigDecimal ResourceStockManager.getAmount(Resource resource, User user)
          Returns resource category.
 BigDecimal ServiceStockManager.getAmount(Resource resource, User user)
          Returns resource category.
 BigDecimal LocalCurrencyStockManager.getAmount(Resource resource, User user)
          Returns resource category.
 BigDecimal GoodStockManager.getAmount(Resource resource, User user)
          Returns resource category.
 BigDecimal ResourceStockManager.getConsumeAmount(Resource resource)
          Returns consume amount for the resource.
 BigDecimal ServiceStockManager.getConsumeAmount(Resource resource)
          Returns consume amount for the resource.
 BigDecimal StockManager.getConsumeAmount(Resource resource)
          Returns consume amount for the resource.
 BigDecimal LocalCurrencyStockManager.getConsumeAmount(Resource resource)
          Returns consume amount for the resource.
 BigDecimal GoodStockManager.getConsumeAmount(Resource resource)
          Returns consume amount for the resource.
 BigDecimal DefaultStockManager.getConsumeAmount(Resource resource)
          Returns consume amount for the resource.
protected  ResourceStockManager DefaultStockManager.getProcessor(Resource resource)
          Returns processor by the category's alias.
 BigDecimal ResourceStockManager.getSupplyAmount(Resource resource)
          Returns supply amount for the resource.
 BigDecimal ServiceStockManager.getSupplyAmount(Resource resource)
          Returns supply amount for the resource.
 BigDecimal StockManager.getSupplyAmount(Resource resource)
          Returns supply amount for the resource.
 BigDecimal LocalCurrencyStockManager.getSupplyAmount(Resource resource)
          Returns supply amount for the resource.
 BigDecimal GoodStockManager.getSupplyAmount(Resource resource)
          Returns supply amount for the resource.
 BigDecimal DefaultStockManager.getSupplyAmount(Resource resource)
          Returns supply amount for the resource.
 BigDecimal StockManager.getUserAvailableAmount(Resource resource, User user)
          Returns resource category.
 BigDecimal DefaultStockManager.getUserAvailableAmount(Resource resource, User user)
          Returns resource category.
 boolean ResourceStockManager.isAmountManagementEnabled(Resource resource, TenderType tenderType)
          Returns true of the amount management is enabled for consumers.
 boolean ServiceStockManager.isAmountManagementEnabled(Resource resource, TenderType tenderType)
          Returns true of the amount management is enabled for consumers.
 boolean StockManager.isAmountManagementEnabled(Resource resource, TenderType tenderType)
          Returns true of the amount management is enabled.
 boolean LocalCurrencyStockManager.isAmountManagementEnabled(Resource resource, TenderType tenderType)
          Returns true of the amount management is enabled for consumers.
 boolean GoodStockManager.isAmountManagementEnabled(Resource resource, TenderType tenderType)
          Returns true of the amount management is enabled for consumers.
 boolean DefaultStockManager.isAmountManagementEnabled(Resource resource, TenderType tenderType)
          Returns true of the amount management is enabled.
 boolean ResourceStockManager.isAutoMovementEnabled(Resource resource)
          Returns is auto-supply is enabled for the current resuorce.
 boolean ServiceStockManager.isAutoMovementEnabled(Resource resource)
          Returns is auto-supply is enabled for the current resuorce.
 boolean StockManager.isAutoMovementEnabled(Resource resource)
          Returns true if the stock auto-movement is enabled for the specified resource.
 boolean LocalCurrencyStockManager.isAutoMovementEnabled(Resource resource)
          Returns is auto-supply is enabled for the current resuorce.
 boolean GoodStockManager.isAutoMovementEnabled(Resource resource)
          Returns is auto-supply is enabled for the current resuorce.
 boolean DefaultStockManager.isAutoMovementEnabled(Resource resource)
          Returns true if the stock auto-movement is enabled for the specified resource.
 boolean ResourceStockManager.isPriceManagementEnabled(Resource resource)
          Returns true if the price management is enabled for the specified resource.
 boolean ServiceStockManager.isPriceManagementEnabled(Resource resource)
          Returns true if the price management is enabled for the specified resource.
 boolean StockManager.isPriceManagementEnabled(Resource resource)
          Returns true if the price management is enabled for the specified resource.
 boolean LocalCurrencyStockManager.isPriceManagementEnabled(Resource resource)
          Returns true if the price management is enabled for the specified resource.
 boolean GoodStockManager.isPriceManagementEnabled(Resource resource)
          Returns true if the price management is enabled for the specified resource.
 boolean DefaultStockManager.isPriceManagementEnabled(Resource resource)
          Returns true if the price management is enabled for the specified resource.
 void ResourceStockManager.performAutoMovement(Resource resource)
          Performs resource auto-move if possible.
 void ServiceStockManager.performAutoMovement(Resource resource)
          Performs resource auto-move if possible.
 void LocalCurrencyStockManager.performAutoMovement(Resource resource)
          Performs resource auto-move if possible.
 void GoodStockManager.performAutoMovement(Resource resource)
          Performs resource auto-move if possible.
 void ResourceStockManager.reserveAmount(ResourceTender tender, Resource resource)
          Reserves amount for the specified resource.
 void ServiceStockManager.reserveAmount(ResourceTender tender, Resource resource)
          Reserves amount for the specified resource.
 void StockManager.reserveAmount(ResourceTender resourceTender, Resource resource)
          Reserves resource amount.
 void LocalCurrencyStockManager.reserveAmount(ResourceTender resourceTender, Resource resource)
          Reserves amount for the specified resource.
 void GoodStockManager.reserveAmount(ResourceTender tender, Resource resource)
          Reserves amount for the specified resource.
 void DefaultStockManager.reserveAmount(ResourceTender resourceTender, Resource resource)
          Reserves resource amount.
 

Uses of Resource in org.zeroexchange.resource.tender
 

Methods in org.zeroexchange.resource.tender with parameters of type Resource
 SlicingDataSet<Need> INeedWorkflowManager.getNeeds(Resource resource, Integer excludedUserId)
          Returns tenders belonging to the specified resource.
 SlicingDataSet<Need> NeedWorkflowManager.getNeeds(Resource resource, Integer excludedUserId)
          Returns tenders belonging to the specified resource.
 long TenderVisitService.getNewTendersCount(User user, Resource resource, TenderType tenderType)
          Returns true if all resource tenders aere visited.
 long DefaultTenderVisitService.getNewTendersCount(User user, Resource resource, TenderType tenderType)
          Returns true if all resource tenders aere visited.
 SlicingDataSet<Supply> SupplyWorkflowManager.getSupplies(Resource resource, Integer excludedUserId)
          Returns tenders belonging to the specified resource.
 SlicingDataSet<Supply> ISupplyWorkflowManager.getSupplies(Resource resource, Integer excludedUserId)
          Returns tenders belonging to the specified resource.
 long TenderVisitService.getTendersCount(User user, Resource resource, TenderType need)
          Returns amount of the tenders that are not belong to the specified user.
 long DefaultTenderVisitService.getTendersCount(User user, Resource resource, TenderType tenderType)
          Returns amount of the tenders that are not belong to the specified user.
 

Uses of Resource in org.zeroexchange.resource.write
 

Methods in org.zeroexchange.resource.write with type parameters of type Resource
<T extends Resource>
T
DAOResourceWriter.save(T resource)
          Persists the resource.
<T extends Resource>
T
ResourceWriter.save(T resource)
          Persists the resource.
 

Methods in org.zeroexchange.resource.write that return Resource
 Resource DAOResourceWriter.addNeed(Resource resource, Need need)
          
 Resource ResourceWriter.addNeed(Resource resource, Need resourceTender)
           
 Resource DAOResourceWriter.addSupply(Resource resource, Supply supply)
          
 Resource ResourceWriter.addSupply(Resource resource, Supply resourceTender)
           
 

Methods in org.zeroexchange.resource.write with parameters of type Resource
 Resource DAOResourceWriter.addNeed(Resource resource, Need need)
          
 Resource ResourceWriter.addNeed(Resource resource, Need resourceTender)
           
 Resource DAOResourceWriter.addSupply(Resource resource, Supply supply)
          
 Resource ResourceWriter.addSupply(Resource resource, Supply resourceTender)
           
 

Uses of Resource in org.zeroexchange.web.components.resource.action
 

Classes in org.zeroexchange.web.components.resource.action with type parameters of type Resource
 class ResourceActionPanel<T extends Resource>
           
 class ResourceDetailsPanel<T extends Resource>
           
 class ResourceEditPanel<T extends Resource,D extends ResourceFormData>
           
 class ResourceSummaryPanel<T extends Resource>
           
 class ResourceViewPanel<T extends Resource>
           
 

Constructor parameters in org.zeroexchange.web.components.resource.action with type arguments of type Resource
ConfirmSupplyPanel(String id, org.apache.wicket.model.IModel<Resource> resourceModel)
          Constructor.
NeedsManagementPanel(String id, org.apache.wicket.model.IModel<Resource> resourceModel)
          Constructor.
PersonalTenderPanel(String id, org.apache.wicket.model.IModel<Resource> resourceModel)
          Constructor.
SuppliesManagementPanel(String id, org.apache.wicket.model.IModel<Resource> resourceModel)
          Constructor.
TendersManagementPanel(String id, org.apache.wicket.model.IModel<Resource> resourceModel)
          Constructor.
 

Uses of Resource in org.zeroexchange.web.components.resource.list
 

Methods in org.zeroexchange.web.components.resource.list that return types with arguments of type Resource
protected  List<org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn<Resource,String>> AllUserResourcesPanel.getResourcesColumns()
          Returns the columns for the resources list.
protected  List<org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn<Resource,String>> ResourcesPanel.getResourcesColumns()
          Returns the columns for the resources list.
protected  List<org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn<Resource,String>> ContractResourcesPanel.getResourcesColumns()
           
protected  FilteringSortableDataProvider<Resource,ResourcesFilterData> AllUserResourcesPanel.getResourcesProvider()
          
protected abstract  FilteringSortableDataProvider<Resource,ResourcesFilterData> ResourcesPanel.getResourcesProvider()
           
protected  FilteringSortableDataProvider<Resource,ResourcesFilterData> ContractResourcesPanel.getResourcesProvider()
          
 

Uses of Resource in org.zeroexchange.web.page.contract
 

Methods in org.zeroexchange.web.page.contract that return types with arguments of type Resource
protected  List<RowAction<Resource>> ViewContract.getResourceRowActions()
          Returns list of the actions available for the each resource row.
protected  List<RowAction<Resource>> EditContract.getResourceRowActions()
          Returns list of the actions available for the each resource row.
protected abstract  List<RowAction<Resource>> ContractDetails.getResourceRowActions()
          Returns list of the actions available for the each resource row.
 

Uses of Resource in org.zeroexchange.web.page.contract.context
 

Methods in org.zeroexchange.web.page.contract.context that return Resource
 Resource ResourcesSelectionContractContext.getTargetResource()
           
 

Methods in org.zeroexchange.web.page.contract.context with parameters of type Resource
 void ResourcesSelectionContractContext.setTargetResource(Resource targetResource)
           
 

Constructors in org.zeroexchange.web.page.contract.context with parameters of type Resource
ResourcesSelectionContractContext(Resource resource, int tabIndex)
           
 



Copyright © 2013. All Rights Reserved.