Uses of Class
com.stratelia.webactiv.util.WAPrimaryKey

Packages that use WAPrimaryKey
com.silverpeas.admin.components Copyright (C) 2000 - 2013 Silverpeas This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 
com.silverpeas.comment.dao   
com.silverpeas.comment.dao.jdbc   
com.silverpeas.comment.model   
com.silverpeas.comment.service   
com.silverpeas.sharing.model   
com.silverpeas.subscribe   
com.silverpeas.subscribe.service   
com.silverpeas.tagcloud.model   
com.silverpeas.thumbnail.control   
com.silverpeas.util   
com.stratelia.silverpeas.pdc.model   
com.stratelia.silverpeas.treeManager.model   
com.stratelia.webactiv.persistence   
com.stratelia.webactiv.util   
com.stratelia.webactiv.util.answer.model   
com.stratelia.webactiv.util.contact.info.model   
com.stratelia.webactiv.util.contact.model   
com.stratelia.webactiv.util.coordinates.model   
com.stratelia.webactiv.util.node.model   
com.stratelia.webactiv.util.publication.control   
com.stratelia.webactiv.util.publication.info   
com.stratelia.webactiv.util.publication.model   
com.stratelia.webactiv.util.question.model   
com.stratelia.webactiv.util.questionContainer.model   
com.stratelia.webactiv.util.questionResult.model   
com.stratelia.webactiv.util.score.model   
com.stratelia.webactiv.util.statistic.control   
com.stratelia.webactiv.util.statistic.ejb   
com.stratelia.webactiv.util.statistic.model   
org.silverpeas.attachment   
org.silverpeas.attachment.mock   
org.silverpeas.attachment.model   
org.silverpeas.attachment.process   
org.silverpeas.attachment.repository   
org.silverpeas.importExport.attachment   
org.silverpeas.importExport.versioning   
org.silverpeas.process.annotation   
org.silverpeas.rating   
org.silverpeas.search.indexEngine.model   
org.silverpeas.upload Provides an API to manage file uploads. 
org.silverpeas.wysiwyg.control   
 

Uses of WAPrimaryKey in com.silverpeas.admin.components
 

Classes in com.silverpeas.admin.components with type parameters of type WAPrimaryKey
 class PasteDetailFromToPK<F extends WAPrimaryKey,T extends WAPrimaryKey>
           
 class PasteDetailFromToPK<F extends WAPrimaryKey,T extends WAPrimaryKey>
           
 

Uses of WAPrimaryKey in com.silverpeas.comment.dao
 

Method parameters in com.silverpeas.comment.dao with type arguments of type WAPrimaryKey
 List<CommentedPublicationInfo> CommentDAO.getMostCommentedPublications(String resourceType, List<? extends WAPrimaryKey> pks)
          Among all the publications identified by the resource type and the specified primary keys, gets the most commented ones.
 

Uses of WAPrimaryKey in com.silverpeas.comment.dao.jdbc
 

Methods in com.silverpeas.comment.dao.jdbc with parameters of type WAPrimaryKey
 List<Comment> JDBCCommentRequester.getAllComments(Connection con, String resourceType, WAPrimaryKey foreign_pk)
           
 int JDBCCommentRequester.getCommentsCount(Connection con, String resourceType, WAPrimaryKey foreign_pk)
           
 

Method parameters in com.silverpeas.comment.dao.jdbc with type arguments of type WAPrimaryKey
 List<CommentedPublicationInfo> JDBCCommentRequester.getMostCommentedPublications(Connection con, List<? extends WAPrimaryKey> pks)
           
 List<CommentedPublicationInfo> JDBCCommentDAO.getMostCommentedPublications(String resourceType, List<? extends WAPrimaryKey> pks)
           
 

Uses of WAPrimaryKey in com.silverpeas.comment.model
 

Subclasses of WAPrimaryKey in com.silverpeas.comment.model
 class CommentPK
          This object contains the info about PrimaryKey of document
 

Methods in com.silverpeas.comment.model that return WAPrimaryKey
 WAPrimaryKey Comment.getForeignKey()
           
 

Methods in com.silverpeas.comment.model with parameters of type WAPrimaryKey
 void Comment.setForeignKey(WAPrimaryKey foreign_key)
           
 

Constructors in com.silverpeas.comment.model with parameters of type WAPrimaryKey
Comment(CommentPK pk, String resourceType, WAPrimaryKey foreign_key, int owner_id, String owner, String message, Date creation_date, Date modification_date)
           
Comment(CommentPK pk, String resourceType, WAPrimaryKey contentPk, String authorId, String message, Date creationDate, Date modificationDate)
           
CommentPK(String id, WAPrimaryKey pk)
          Constructor declaration
 

Uses of WAPrimaryKey in com.silverpeas.comment.service
 

Methods in com.silverpeas.comment.service with parameters of type WAPrimaryKey
 void DefaultCommentService.deleteAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
          Deletes all of the comments on the publication identified by the resource type and the specified identifier.
 void CommentService.deleteAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
           
 List<Comment> DefaultCommentService.getAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
          Gets all of the comments on the publication identified by the resource type and the specified identifier.
 List<Comment> CommentService.getAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
           
 int DefaultCommentService.getCommentsCountOnPublication(String resourceType, WAPrimaryKey pk)
          Gets the count of comments on the publication identified by the resource type and the specified identifier.
 int CommentService.getCommentsCountOnPublication(String resourceType, WAPrimaryKey pk)
           
 void DefaultCommentService.indexAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
          Indexes all the comments on the publication identified by the resource type and the specified identifier.
 void CommentService.indexAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
           
 void DefaultCommentService.moveAndReindexComments(String resourceType, WAPrimaryKey fromPK, WAPrimaryKey toPK)
          Moves the comments on the specified publication to the another specified publication and reindexes them.
 void CommentService.moveAndReindexComments(String resourceType, WAPrimaryKey fromPK, WAPrimaryKey toPK)
           
 void DefaultCommentService.moveComments(String resourceType, WAPrimaryKey fromPK, WAPrimaryKey toPK)
          Moves the comments on the specified publication to the another specified publication.
 void CommentService.moveComments(String resourceType, WAPrimaryKey fromPK, WAPrimaryKey toPK)
           
 void DefaultCommentService.unindexAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
          Removes the indexes on all the comments of the publication identified by the resource type and the specified identifier.
 void CommentService.unindexAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
           
 

Method parameters in com.silverpeas.comment.service with type arguments of type WAPrimaryKey
 List<CommentedPublicationInfo> DefaultCommentService.getMostCommentedPublicationsInfo(String resourceType, List<? extends WAPrimaryKey> pks)
          Gets information about the commented publications among the specified ones.
 List<CommentedPublicationInfo> CommentService.getMostCommentedPublicationsInfo(String resourceType, List<? extends WAPrimaryKey> pks)
           
 

Uses of WAPrimaryKey in com.silverpeas.sharing.model
 

Methods in com.silverpeas.sharing.model with parameters of type WAPrimaryKey
protected  Collection<Alias> NodeAccessControl.getPublicationAliases(WAPrimaryKey pk)
           
protected  Collection<NodePK> NodeAccessControl.getPublicationFathers(WAPrimaryKey pk)
           
 

Uses of WAPrimaryKey in com.silverpeas.subscribe
 

Methods in com.silverpeas.subscribe with type parameters of type WAPrimaryKey
<T extends WAPrimaryKey>
T
SubscriptionResource.getPK()
          Gets the Silverpeas Primary Key of the aimed resource
 

Uses of WAPrimaryKey in com.silverpeas.subscribe.service
 

Classes in com.silverpeas.subscribe.service with type parameters of type WAPrimaryKey
 class AbstractSubscriptionResource<T extends WAPrimaryKey>
          User: Yohann Chastagnier Date: 20/02/13
 

Methods in com.silverpeas.subscribe.service with parameters of type WAPrimaryKey
static PKSubscriptionResource PKSubscriptionResource.from(WAPrimaryKey pk, SubscriptionResourceType subscriptionResourceType)
          A way to get an instance of a PK subscription resource.
 

Constructors in com.silverpeas.subscribe.service with parameters of type WAPrimaryKey
PKSubscriptionResource(WAPrimaryKey pk, SubscriptionResourceType subscriptionResourceType)
          Default constructor.
 

Uses of WAPrimaryKey in com.silverpeas.tagcloud.model
 

Subclasses of WAPrimaryKey in com.silverpeas.tagcloud.model
 class TagCloudPK
          Primary key of a tagcloud.
 

Constructors in com.silverpeas.tagcloud.model with parameters of type WAPrimaryKey
TagCloudPK(String id, WAPrimaryKey pk)
           
 

Uses of WAPrimaryKey in com.silverpeas.thumbnail.control
 

Methods in com.silverpeas.thumbnail.control with parameters of type WAPrimaryKey
 List<DummyHandledFile> ThumbnailDummyHandledFileConverter.convert(List<ThumbnailSimulationElement> elements, WAPrimaryKey targetPK, ActionType actionType)
           
 

Constructors in com.silverpeas.thumbnail.control with parameters of type WAPrimaryKey
ThumbnailDummyHandledFile(ThumbnailDetail thumbnail, File thumbnailFile, WAPrimaryKey targetPK)
          Default constructor.
 

Uses of WAPrimaryKey in com.silverpeas.util
 

Subclasses of WAPrimaryKey in com.silverpeas.util
 class ForeignPK
          This PrimaryKey object must be used between two differents and independants modules It avoids circular dependencies
 

Constructors in com.silverpeas.util with parameters of type WAPrimaryKey
ForeignPK(String id, WAPrimaryKey pk)
           
ForeignPK(WAPrimaryKey pk)
           
 

Uses of WAPrimaryKey in com.stratelia.silverpeas.pdc.model
 

Subclasses of WAPrimaryKey in com.stratelia.silverpeas.pdc.model
 class AxisPK
          It's the Axis PrimaryKey object It identify an axe
 class UsedAxisPK
          It's the UsedAxis PrimaryKey object It identify an axe used by an instance
 class ValuePK
          It's the Value PrimaryKey object It identify values of the an axe
 

Methods in com.stratelia.silverpeas.pdc.model that return WAPrimaryKey
 WAPrimaryKey AxisHeader.getPK()
           
 

Methods in com.stratelia.silverpeas.pdc.model with parameters of type WAPrimaryKey
 void AxisHeader.setPK(WAPrimaryKey value)
           
 

Constructors in com.stratelia.silverpeas.pdc.model with parameters of type WAPrimaryKey
AxisPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
UsedAxisPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
ValuePK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.silverpeas.treeManager.model
 

Subclasses of WAPrimaryKey in com.stratelia.silverpeas.treeManager.model
 class TreeNodePK
          Class declaration
 

Methods in com.stratelia.silverpeas.treeManager.model that return WAPrimaryKey
 WAPrimaryKey TreeNode.getPK()
           
 

Methods in com.stratelia.silverpeas.treeManager.model with parameters of type WAPrimaryKey
 void TreeNode.setPK(WAPrimaryKey value)
           
 

Constructors in com.stratelia.silverpeas.treeManager.model with parameters of type WAPrimaryKey
TreeNodePK(String id, WAPrimaryKey pk)
          Constructor declaration
 

Uses of WAPrimaryKey in com.stratelia.webactiv.persistence
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.persistence
 class IdPK
           
 

Methods in com.stratelia.webactiv.persistence that return WAPrimaryKey
 WAPrimaryKey SilverpeasBeanDAOImpl.add(Connection connection, T bean)
           
 WAPrimaryKey SilverpeasBeanDAO.add(Connection con, T bean)
           
 WAPrimaryKey SilverpeasBeanDAOImpl.add(T bean)
           
 WAPrimaryKey SilverpeasBeanDAO.add(T bean)
          create the bean and a row in DB.
 WAPrimaryKey SilverpeasBean.getPK()
           
 WAPrimaryKey SilverpeasBeanIntf.getPK()
           
 

Methods in com.stratelia.webactiv.persistence with parameters of type WAPrimaryKey
 T SilverpeasBeanDAOImpl.findByPrimaryKey(Connection connection, WAPrimaryKey pk)
           
 T SilverpeasBeanDAO.findByPrimaryKey(Connection con, WAPrimaryKey pk)
           
 T SilverpeasBeanDAOImpl.findByPrimaryKey(WAPrimaryKey pk)
           
 T SilverpeasBeanDAO.findByPrimaryKey(WAPrimaryKey pk)
          get a bean representing a row in db from its pk
 Collection<T> SilverpeasBeanDAOImpl.findByWhereClause(Connection connection, WAPrimaryKey pk, String whereClause)
           
 Collection<T> SilverpeasBeanDAO.findByWhereClause(Connection con, WAPrimaryKey pk, String whereClause)
           
 Collection<T> SilverpeasBeanDAOImpl.findByWhereClause(WAPrimaryKey pk, String whereClause)
           
 Collection<T> SilverpeasBeanDAO.findByWhereClause(WAPrimaryKey pk, String whereClause)
          get a bean list, representing a specific row selection.
 void SilverpeasBeanDAOImpl.remove(Connection connection, WAPrimaryKey pk)
           
 void SilverpeasBeanDAO.remove(Connection con, WAPrimaryKey pk)
           
 void SilverpeasBeanDAOImpl.remove(WAPrimaryKey pk)
           
 void SilverpeasBeanDAO.remove(WAPrimaryKey pk)
          remove the row in db represented by the primary key.
 void SilverpeasBeanDAOImpl.removeWhere(Connection connection, WAPrimaryKey pk, String whereClause)
           
 void SilverpeasBeanDAO.removeWhere(Connection con, WAPrimaryKey pk, String p_WhereClause)
           
 void SilverpeasBeanDAOImpl.removeWhere(WAPrimaryKey pk, String whereClause)
           
 void SilverpeasBeanDAO.removeWhere(WAPrimaryKey pk, String p_WhereClause)
          remove all row in db represented by the where clause.
 void SilverpeasBean.setPK(WAPrimaryKey value)
           
 void SilverpeasBeanIntf.setPK(WAPrimaryKey value)
           
 

Constructors in com.stratelia.webactiv.persistence with parameters of type WAPrimaryKey
IdPK(String id, WAPrimaryKey value)
          IdPK(String id, WAPrimaryKey value)
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util
 

Methods in com.stratelia.webactiv.util that return WAPrimaryKey
 WAPrimaryKey WAPrimaryKey.clone()
           
 

Constructors in com.stratelia.webactiv.util with parameters of type WAPrimaryKey
WAPrimaryKey(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.answer.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.answer.model
 class AnswerPK
          It's the Publication PrimaryKey object It identify a Publication
 

Constructors in com.stratelia.webactiv.util.answer.model with parameters of type WAPrimaryKey
AnswerPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.contact.info.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.contact.info.model
 class InfoPK
           
 

Constructors in com.stratelia.webactiv.util.contact.info.model with parameters of type WAPrimaryKey
InfoPK(String id, WAPrimaryKey pk)
           
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.contact.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.contact.model
 class ContactPK
          It's the Contact PrimaryKey object It identify a Contact
 

Constructors in com.stratelia.webactiv.util.contact.model with parameters of type WAPrimaryKey
ContactPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.coordinates.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.coordinates.model
 class CoordinatePK
           
 

Constructors in com.stratelia.webactiv.util.coordinates.model with parameters of type WAPrimaryKey
CoordinatePK(String id, WAPrimaryKey pk)
          Constructor declaration
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.node.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.node.model
 class NodeI18NPK
          It's the Node PrimaryKey object It identify a Node
 class NodePK
          It's the Node PrimaryKey object It identify a Node
 

Constructors in com.stratelia.webactiv.util.node.model with parameters of type WAPrimaryKey
NodeI18NPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
NodePK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.publication.control
 

Method parameters in com.stratelia.webactiv.util.publication.control with type arguments of type WAPrimaryKey
 Collection<PublicationPK> PublicationBmEJB.getPubPKsInFatherPKs(Collection<WAPrimaryKey> fatherPKs)
           
 Collection<PublicationPK> PublicationBm.getPubPKsInFatherPKs(Collection<WAPrimaryKey> fatherPKs)
          Method declaration
static Collection<PublicationPK> PublicationFatherDAO.getPubPKsInFatherPKs(Connection con, Collection<WAPrimaryKey> fatherPKs)
          Method declaration
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.publication.info
 

Methods in com.stratelia.webactiv.util.publication.info with parameters of type WAPrimaryKey
static void SeeAlsoDAO.addLink(Connection con, WAPrimaryKey objectPK, WAPrimaryKey targetPK)
          Method declaration
static void SeeAlsoDAO.deleteLink(Connection con, WAPrimaryKey objectPK, WAPrimaryKey targetPK)
           
static void SeeAlsoDAO.deleteLinksByObjectId(Connection con, WAPrimaryKey objectPK)
           
static void SeeAlsoDAO.deleteLinksByTargetId(Connection con, WAPrimaryKey targetPK)
           
static List<ForeignPK> SeeAlsoDAO.getLinks(Connection con, WAPrimaryKey objectPK)
          Method declaration
static List<ForeignPK> SeeAlsoDAO.getReverseLinks(Connection con, WAPrimaryKey objectPK)
          gets the publication identifiers which reference given publication
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.publication.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.publication.model
 class Alias
           
 class PublicationPK
          It's the Publication PrimaryKey object It identify a Publication
 

Constructors in com.stratelia.webactiv.util.publication.model with parameters of type WAPrimaryKey
PublicationPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.question.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.question.model
 class QuestionPK
          It's the Publication PrimaryKey object It identify a Publication
 

Constructors in com.stratelia.webactiv.util.question.model with parameters of type WAPrimaryKey
QuestionPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.questionContainer.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.questionContainer.model
 class QuestionContainerPK
          It's the QuestionContainer PrimaryKey object It identify a QuestionContainer
 

Constructors in com.stratelia.webactiv.util.questionContainer.model with parameters of type WAPrimaryKey
CommentPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
QuestionContainerPK(String id, WAPrimaryKey pk)
           
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.questionResult.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.questionResult.model
 class QuestionResultPK
          It's the Publication PrimaryKey object It identify a Publication
 

Constructors in com.stratelia.webactiv.util.questionResult.model with parameters of type WAPrimaryKey
QuestionResultPK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.score.model
 

Subclasses of WAPrimaryKey in com.stratelia.webactiv.util.score.model
 class ScorePK
          Class declaration
 

Constructors in com.stratelia.webactiv.util.score.model with parameters of type WAPrimaryKey
ScorePK(String id, WAPrimaryKey pk)
          Constructor which set the id The WAPrimaryKey provides space and component name
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.statistic.control
 

Method parameters in com.stratelia.webactiv.util.statistic.control with type arguments of type WAPrimaryKey
 int StatisticBm.getCountByPeriod(List<WAPrimaryKey> primaryKeys, int action, String objectType, Date startDate, Date endDate)
           
 int StatisticBmEJB.getCountByPeriod(List<WAPrimaryKey> primaryKeys, int action, String objectType, Date startDate, Date endDate)
           
 int StatisticBm.getCountByPeriodAndUser(List<WAPrimaryKey> primaryKeys, String objectType, Date startDate, Date endDate, List<String> userIds)
           
 int StatisticBmEJB.getCountByPeriodAndUser(List<WAPrimaryKey> primaryKeys, String objectType, Date startDate, Date endDate, List<String> userIds)
           
 int StatisticBm.getDistinctCountByPeriod(List<WAPrimaryKey> primaryKeys, int action, String objectType, Date startDate, Date endDate)
           
 int StatisticBmEJB.getDistinctCountByPeriod(List<WAPrimaryKey> primaryKeys, int action, String objectType, Date startDate, Date endDate)
           
 int StatisticBm.getDistinctCountByPeriodUser(List<WAPrimaryKey> primaryKeys, int action, String objectType, Date startDate, Date endDate, List<String> userIds)
           
 int StatisticBmEJB.getDistinctCountByPeriodUser(List<WAPrimaryKey> primaryKeys, int action, String objectType, Date startDate, Date endDate, List<String> userIds)
           
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.statistic.ejb
 

Methods in com.stratelia.webactiv.util.statistic.ejb with parameters of type WAPrimaryKey
static int HistoryObjectDAO.getCountByPeriod(Connection con, WAPrimaryKey primaryKey, String objectType, Date startDate, Date endDate)
           
static int HistoryObjectDAO.getCountByPeriodAndUser(Connection con, WAPrimaryKey primaryKey, String objectType, Date startDate, Date endDate, String userId)
           
 

Method parameters in com.stratelia.webactiv.util.statistic.ejb with type arguments of type WAPrimaryKey
static List<String> HistoryObjectDAO.getListObjectAccessByPeriod(Connection con, List<WAPrimaryKey> primaryKeys, String objectType, Date startDate, Date endDate)
           
static List<String> HistoryObjectDAO.getListObjectAccessByPeriodAndUser(Connection con, List<WAPrimaryKey> primaryKeys, String objectType, Date startDate, Date endDate, String userId)
           
 

Uses of WAPrimaryKey in com.stratelia.webactiv.util.statistic.model
 

Methods in com.stratelia.webactiv.util.statistic.model that return WAPrimaryKey
 WAPrimaryKey StatisticResultDetail.getPK()
          Method declaration
 

Methods in com.stratelia.webactiv.util.statistic.model with parameters of type WAPrimaryKey
static StatisticResultDetail StatisticResultDetail.getFromCollection(WAPrimaryKey pk, Collection<StatisticResultDetail> list)
          Method declaration
 

Constructors in com.stratelia.webactiv.util.statistic.model with parameters of type WAPrimaryKey
StatisticResultDetail(WAPrimaryKey pk, String result)
          Constructor declaration
StatisticResultDetail(WAPrimaryKey pk, String result, Object detail)
          Constructor declaration
 

Uses of WAPrimaryKey in org.silverpeas.attachment
 

Methods in org.silverpeas.attachment with parameters of type WAPrimaryKey
 List<SimpleDocumentPK> SimpleDocumentService.copyAllDocuments(WAPrimaryKey resourceSourcePk, WAPrimaryKey targetDestinationPk)
           
 List<SimpleDocumentPK> AttachmentService.copyAllDocuments(WAPrimaryKey resourceSourcePk, WAPrimaryKey targetDestinationPk)
          Copies all the attachment linked to a resource to another one.
 void SimpleDocumentService.indexAllDocuments(WAPrimaryKey fk, Date startOfVisibilityPeriod, Date endOfVisibilityPeriod)
           
 void AttachmentService.indexAllDocuments(WAPrimaryKey fk, Date startOfVisibilityPeriod, Date endOfVisibilityPeriod)
          Indexes all the documents (whatever their type) of a container.
 SimpleDocumentList<SimpleDocument> SimpleDocumentService.listAllDocumentsByForeignKey(WAPrimaryKey foreignKey, String lang)
           
 SimpleDocumentList<SimpleDocument> AttachmentService.listAllDocumentsByForeignKey(WAPrimaryKey foreignKey, String lang)
          Search all documents (files, xmlform content, wysiwyg) attached to a foreign object.
 SimpleDocumentList<SimpleDocument> SimpleDocumentService.listDocumentsByForeignKey(WAPrimaryKey foreignKey, String lang)
           
 SimpleDocumentList<SimpleDocument> AttachmentService.listDocumentsByForeignKey(WAPrimaryKey foreignKey, String lang)
          Search all files attached to a foreign object.
 SimpleDocumentList<SimpleDocument> SimpleDocumentService.listDocumentsByForeignKeyAndType(WAPrimaryKey foreignKey, DocumentType type, String lang)
           
 SimpleDocumentList<SimpleDocument> AttachmentService.listDocumentsByForeignKeyAndType(WAPrimaryKey foreignKey, DocumentType type, String lang)
          Search all file attached to a foreign object.
 List<SimpleDocumentPK> SimpleDocumentService.moveAllDocuments(WAPrimaryKey resourceSourcePk, WAPrimaryKey targetDestinationPk)
           
 List<SimpleDocumentPK> AttachmentService.moveAllDocuments(WAPrimaryKey resourceSourcePk, WAPrimaryKey targetDestinationPk)
           
 void SimpleDocumentService.unindexAttachmentsOfExternalObject(WAPrimaryKey foreignKey)
           
 void AttachmentService.unindexAttachmentsOfExternalObject(WAPrimaryKey foreignKey)
           
 

Uses of WAPrimaryKey in org.silverpeas.attachment.mock
 

Methods in org.silverpeas.attachment.mock with parameters of type WAPrimaryKey
 List<SimpleDocumentPK> SimpleDocumentServiceWrapper.copyAllDocuments(WAPrimaryKey resourceSourcePk, WAPrimaryKey targetDestinationPk)
           
 void SimpleDocumentServiceWrapper.indexAllDocuments(WAPrimaryKey fk, Date startOfVisibilityPeriod, Date endOfVisibilityPeriod)
           
 SimpleDocumentList<SimpleDocument> SimpleDocumentServiceWrapper.listAllDocumentsByForeignKey(WAPrimaryKey foreignKey, String lang)
           
 SimpleDocumentList<SimpleDocument> SimpleDocumentServiceWrapper.listDocumentsByForeignKey(WAPrimaryKey foreignKey, String lang)
           
 SimpleDocumentList<SimpleDocument> SimpleDocumentServiceWrapper.listDocumentsByForeignKeyAndType(WAPrimaryKey foreignKey, DocumentType type, String lang)
           
 List<SimpleDocumentPK> SimpleDocumentServiceWrapper.moveAllDocuments(WAPrimaryKey resourceSourcePk, WAPrimaryKey targetDestinationPk)
           
 void SimpleDocumentServiceWrapper.unindexAttachmentsOfExternalObject(WAPrimaryKey foreignKey)
           
 

Uses of WAPrimaryKey in org.silverpeas.attachment.model
 

Subclasses of WAPrimaryKey in org.silverpeas.attachment.model
 class SimpleDocumentPK
           
 

Constructors in org.silverpeas.attachment.model with parameters of type WAPrimaryKey
SimpleDocumentPK(String id, WAPrimaryKey pk)
           
 

Uses of WAPrimaryKey in org.silverpeas.attachment.process
 

Methods in org.silverpeas.attachment.process with parameters of type WAPrimaryKey
 List<DummyHandledFile> SimpleDocumentDummyHandledFileConverter.convert(List<SimpleDocumentSimulationElement> elements, WAPrimaryKey targetPK, ActionType actionType)
           
 void AttachmentSimulationElementLister.listElements(Object source, String language, WAPrimaryKey targetPK)
           
 void AttachmentSimulationElementLister.listElements(WAPrimaryKey sourcePK, String language)
           
 

Constructors in org.silverpeas.attachment.process with parameters of type WAPrimaryKey
SimpleDocumentDummyHandledFile(SimpleDocument document, WAPrimaryKey targetPK)
          Default constructor.
 

Uses of WAPrimaryKey in org.silverpeas.attachment.repository
 

Methods in org.silverpeas.attachment.repository with parameters of type WAPrimaryKey
 SimpleDocumentPK DocumentRepository.copyDocument(javax.jcr.Session session, HistorisedDocument document, WAPrimaryKey destination)
          Copy the document to another attached object.
 SimpleDocumentPK DocumentRepository.copyDocument(javax.jcr.Session session, SimpleDocument document, WAPrimaryKey destination)
          Copy the document to another attached object.
 SimpleDocumentPK DocumentRepository.moveDocument(javax.jcr.Session session, SimpleDocument document, WAPrimaryKey destination)
          Move the document to another attached object.
 

Uses of WAPrimaryKey in org.silverpeas.importExport.attachment
 

Subclasses of WAPrimaryKey in org.silverpeas.importExport.attachment
 class AttachmentPK
          Class declaration
 

Methods in org.silverpeas.importExport.attachment that return WAPrimaryKey
 WAPrimaryKey AttachmentDetail.getForeignKey()
          Method declaration
 

Methods in org.silverpeas.importExport.attachment with parameters of type WAPrimaryKey
 List<AttachmentDetail> AttachmentImportExport.getAttachments(WAPrimaryKey pk, String exportPath, String relativeExportPath, String extensionFilter)
          Methode de recuperation des attachements et de copie des fichiers dans le dossier d'exportation
 void AttachmentDetail.setForeignKey(WAPrimaryKey foreignKey)
          Method declaration
 

Constructors in org.silverpeas.importExport.attachment with parameters of type WAPrimaryKey
AttachmentDetail(AttachmentPK attachPK, String physicalName, String logicalName, String description, String type, long size, String context, Date creationDate, WAPrimaryKey foreignKey)
           
AttachmentDetail(AttachmentPK attachPK, String physicalName, String logicalName, String description, String type, long size, String context, Date creationDate, WAPrimaryKey foreignKey, String author)
          Constructor
AttachmentDetail(AttachmentPK attachPK, String physicalName, String logicalName, String description, String type, long size, String context, Date creationDate, WAPrimaryKey foreignKey, String author, String title)
           
AttachmentDetail(AttachmentPK attachPK, String physicalName, String logicalName, String description, String type, long size, String context, Date creationDate, WAPrimaryKey foreignKey, String title, String info, int orderNum)
           
AttachmentDetail(WAPrimaryKey foreignKey)
          Constructor
AttachmentPK(String id, WAPrimaryKey pk)
          Constructor declaration
 

Uses of WAPrimaryKey in org.silverpeas.importExport.versioning
 

Subclasses of WAPrimaryKey in org.silverpeas.importExport.versioning
 class DocumentPK
          This object contains the info about PrimaryKey of document
 class DocumentVersionPK
          This object contains the info about PrimaryKey of document version
 

Methods in org.silverpeas.importExport.versioning that return WAPrimaryKey
 WAPrimaryKey Document.getForeignKey()
           
 

Constructors in org.silverpeas.importExport.versioning with parameters of type WAPrimaryKey
Document(DocumentPK pk, WAPrimaryKey foreignKey, String name, String description, int status, int ownerId, Date lastCheckOutDate, String additionalInfo, String instanceId, int typeWorkList, int currentWorkListOrder)
           
DocumentPK(int id, WAPrimaryKey pk)
          Constructor declaration
DocumentVersionPK(int id, WAPrimaryKey pk)
          Constructor declaration
 

Uses of WAPrimaryKey in org.silverpeas.process.annotation
 

Methods in org.silverpeas.process.annotation with parameters of type WAPrimaryKey
 List<DummyHandledFile> DummyHandledFileConverter.convert(List<S> elements, WAPrimaryKey targetPK, ActionType actionType)
          Method that contains the treatment of the conversion.
abstract  void SimulationElementLister.listElements(Object source, String language, WAPrimaryKey targetPK)
          This method contains the treatment that lists all elements which have to be converted into dummy handled file.
abstract  void SimulationElementLister.listElements(WAPrimaryKey sourcePK, String language)
          This method contains the treatment that lists all elements which have to be converted into dummy handled file.
 

Uses of WAPrimaryKey in org.silverpeas.rating
 

Subclasses of WAPrimaryKey in org.silverpeas.rating
 class ContributionRatingPK
          This class represents a technical primary key of a contribution rating.
 class RaterRatingPK
          This class represents a technical primary key of a rater rating.
 

Uses of WAPrimaryKey in org.silverpeas.search.indexEngine.model
 

Constructors in org.silverpeas.search.indexEngine.model with parameters of type WAPrimaryKey
IndexEntry(WAPrimaryKey key)
          This constructor set the key part of the IndexEntry but leave empty the object type.
IndexEntry(WAPrimaryKey key, String type)
          This constructor set the key part of the IndexEntry from WAPrimaryKey completed with a type given as a String.
 

Uses of WAPrimaryKey in org.silverpeas.upload
 

Methods in org.silverpeas.upload with parameters of type WAPrimaryKey
 void UploadedFile.registerAttachment(WAPrimaryKey resourcePk, String contributionLanguage)
          Register an attachment attached in relation to the given contribution identifiers.
 void UploadedFile.registerAttachment(WAPrimaryKey resourcePk, String contributionLanguage, boolean indexIt)
          Register an attachment in relation to the given contribution identifiers.
 SimpleDocument UploadedFile.retrieveSimpleDocument(WAPrimaryKey resourcePk, String contributionLanguage)
          Retrieve the SimpleDocument in relation with uploaded file.
 

Uses of WAPrimaryKey in org.silverpeas.wysiwyg.control
 

Methods in org.silverpeas.wysiwyg.control with parameters of type WAPrimaryKey
 void WysiwygManager.createFileAndAttachment(String textHtml, WAPrimaryKey foreignKey, String userId, String contentLanguage)
          Method declaration creation of the file and its attachment.
static void WysiwygController.createFileAndAttachment(String textHtml, WAPrimaryKey foreignKey, String userId, String contentLanguage)
          Method declaration creation of the file and its attachment.
 void WysiwygManager.createFileAndAttachment(String textHtml, WAPrimaryKey foreignKey, String context, String userId, String contentLanguage)
          Creation of the file and its attachment.
static void WysiwygController.createFileAndAttachment(String textHtml, WAPrimaryKey foreignKey, String context, String userId, String contentLanguage)
          Creation of the file and its attachment.
 void WysiwygManager.createUnindexedFileAndAttachment(String textHtml, WAPrimaryKey foreignKey, String userId, String contentLanguage)
          Method declaration creation of the file and its attachment.
static void WysiwygController.createUnindexedFileAndAttachment(String textHtml, WAPrimaryKey foreignKey, String userId, String contentLanguage)
          Method declaration creation of the file and its attachment.
 



Copyright © 2016 Silverpeas. All Rights Reserved.