org.alfresco.repo.model.filefolder.HiddenAspect Java Examples
The following examples show how to use
org.alfresco.repo.model.filefolder.HiddenAspect.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CifsHelper.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #2
Source File: ContentDiskDriver2.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
/** * @param hiddenAspect */ public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #3
Source File: CustomModelServiceImpl.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #4
Source File: SWSDPPatch.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #5
Source File: AddSurfConfigFoldersPatch.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #6
Source File: AbstractEventsService.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #7
Source File: ImporterComponent.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #8
Source File: ActivityPosterImpl.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #9
Source File: CMISConnector.java From alfresco-repository with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #10
Source File: ADMRemoteStore.java From alfresco-remote-api with GNU Lesser General Public License v3.0 | 4 votes |
public void setHiddenAspect(HiddenAspect hiddenAspect) { this.hiddenAspect = hiddenAspect; }
Example #11
Source File: WebDAVHelper.java From alfresco-remote-api with GNU Lesser General Public License v3.0 | 4 votes |
/** * @return the hidden aspect bean */ public final HiddenAspect getHiddenAspect() { return m_hiddenAspect; }
Example #12
Source File: WebDAVHelper.java From alfresco-remote-api with GNU Lesser General Public License v3.0 | 4 votes |
/** * @param hiddenAspect the hiddenAspect to set */ public void setHiddenAspect(HiddenAspect hiddenAspect) { this.m_hiddenAspect = hiddenAspect; }
Example #13
Source File: RepoService.java From alfresco-remote-api with GNU Lesser General Public License v3.0 | 4 votes |
@SuppressWarnings("unchecked") public RepoService(ApplicationContext applicationContext) throws Exception { this.applicationContext = applicationContext; this.publicApiContext = new PublicApiTestContext(applicationContext); this.authenticationService = (MutableAuthenticationService)applicationContext.getBean("AuthenticationService"); this.siteService = (SiteService)applicationContext.getBean("SiteService"); this.activityService = (ActivityService)applicationContext.getBean("activityService"); this.fileFolderService = (FileFolderService)applicationContext.getBean("FileFolderService"); this.contentService = (ContentService)applicationContext.getBean("ContentService"); this.commentService = (CommentService)applicationContext.getBean("CommentService"); this.nodeService = (NodeService)applicationContext.getBean("NodeService"); this.preferenceService = (PreferenceService)applicationContext.getBean("PreferenceService"); this.taggingService = (TaggingService)applicationContext.getBean("TaggingService"); this.ratingService = (RatingService)applicationContext.getBean("RatingService"); this.tenantService = (TenantService)applicationContext.getBean("tenantService"); this.tenantAdminService = (TenantAdminService)applicationContext.getBean("tenantAdminService"); this.personService = (PersonService)applicationContext.getBean("PersonService"); this.contentStoreCleaner = (ContentStoreCleaner)applicationContext.getBean("contentStoreCleaner"); this.postDAO = (ActivityPostDAO)applicationContext.getBean("postDAO"); this.nodeRatingSchemeRegistry = (NamedObjectRegistry<RatingScheme>)applicationContext.getBean("nodeRatingSchemeRegistry"); this.cociService = (CheckOutCheckInService)applicationContext.getBean("CheckoutCheckinService"); this.favouritesService = (FavouritesService)applicationContext.getBean("FavouritesService"); this.dictionaryService = (DictionaryService)applicationContext.getBean("dictionaryService"); this.invitationService = (InvitationService)applicationContext.getBean("InvitationService"); this.lockService = (LockService)applicationContext.getBean("LockService"); this.cmisConnector = (CMISConnector)applicationContext.getBean("CMISConnector"); this.activities = (Activities)applicationContext.getBean("activities"); this.hiddenAspect = (HiddenAspect)applicationContext.getBean("hiddenAspect"); this.networksService = (NetworksService)applicationContext.getBean("networksService"); this.namespaceService = (NamespaceService)applicationContext.getBean("namespaceService"); this.transactionHelper = (RetryingTransactionHelper)applicationContext.getBean("retryingTransactionHelper"); Scheduler scheduler = (Scheduler)applicationContext.getBean("schedulerFactory"); CronTrigger contentStoreCleanerTrigger = (CronTrigger)applicationContext.getBean("contentStoreCleanerTrigger"); scheduler.pauseJob(contentStoreCleanerTrigger.getJobKey()); ChildApplicationContextFactory activitiesFeed = (ChildApplicationContextFactory)applicationContext.getBean("ActivitiesFeed"); ApplicationContext activitiesFeedCtx = activitiesFeed.getApplicationContext(); this.postLookup = (PostLookup)activitiesFeedCtx.getBean("postLookup"); this.feedGenerator = (FeedGenerator)activitiesFeedCtx.getBean("feedGenerator"); this.feedGeneratorJobDetail = (JobDetail)activitiesFeedCtx.getBean("feedGeneratorJobDetail"); this.postLookupJobDetail = (JobDetail)activitiesFeedCtx.getBean("postLookupJobDetail"); this.feedCleanerJobDetail = (JobDetail)activitiesFeedCtx.getBean("feedCleanerJobDetail"); this.postCleanerJobDetail = (JobDetail)activitiesFeedCtx.getBean("postCleanerJobDetail"); this.feedNotifierJobDetail = (JobDetail)activitiesFeedCtx.getBean("feedNotifierJobDetail"); this.feedCleaner = (FeedCleaner)activitiesFeedCtx.getBean("feedCleaner"); // Pause activities jobs so that we aren't competing with their scheduled versions scheduler.pauseJob(feedGeneratorJobDetail.getKey()); scheduler.pauseJob(postLookupJobDetail.getKey()); scheduler.pauseJob(feedCleanerJobDetail.getKey()); scheduler.pauseJob(postCleanerJobDetail.getKey()); scheduler.pauseJob(feedNotifierJobDetail.getKey()); this.systemNetwork = new TestNetwork(TenantService.DEFAULT_DOMAIN, true); }
Example #14
Source File: AbstractSignatureActionExecuter.java From CounterSign with GNU Affero General Public License v3.0 | 4 votes |
/** * Creates a "signature" object and associates it with the signed doc * @param node * @param location * @param reason */ protected NodeRef addSignatureNodeAssociation(NodeRef node, String location, String reason, String signatureField, java.util.Date sigDate, String geolocation, int page, String position) { NodeService nodeService = serviceRegistry.getNodeService(); String userId = AuthenticationUtil.getRunAsUser(); NodeRef person = serviceRegistry.getPersonService().getPerson(userId); // if page is -1, then this was a signature field, set position to "none" if(page == -1) position = "none"; HashMap<QName, Serializable> props = new HashMap<QName, Serializable>(); props.put(CounterSignSignatureModel.PROP_REASON, reason); props.put(CounterSignSignatureModel.PROP_LOCATION, location); props.put(CounterSignSignatureModel.PROP_SIGNATUREDATE, sigDate); props.put(CounterSignSignatureModel.PROP_SIGNATUREFIELD, signatureField); props.put(CounterSignSignatureModel.PROP_SIGNATUREPAGE, page); props.put(CounterSignSignatureModel.PROP_SIGNATUREPOSITION, position); props.put(CounterSignSignatureModel.PROP_EXTERNALSIGNER, userId); // check the geolocation data, if it is valid, split it out and add if(geolocation.indexOf(",") != -1) { String[] latLong = geolocation.split(","); props.put(ContentModel.PROP_LATITUDE, latLong[0]); props.put(ContentModel.PROP_LONGITUDE, latLong[1]); } else { props.put(ContentModel.PROP_LATITUDE, -1); props.put(ContentModel.PROP_LONGITUDE, -1); } QName assocQName = QName.createQName( CounterSignSignatureModel.COUNTERSIGN_SIGNATURE_MODEL_1_0_URI, QName.createValidLocalName(userId + "-" + sigDate.getTime())); ChildAssociationRef sigChildRef = nodeService.createNode( node, CounterSignSignatureModel.ASSOC_SIGNATURES, assocQName, CounterSignSignatureModel.TYPE_SIGNATURE, props); NodeRef signature = sigChildRef.getChildRef(); // add hidden aspect to signature nodes, these should not be // shown in any document lists or other Share views HashMap<QName, Serializable> aspectProps = new HashMap<QName, Serializable>(); aspectProps.put(ContentModel.PROP_VISIBILITY_MASK, HiddenAspect.Visibility.NotVisible.getMask()); nodeService.addAspect(signature, ContentModel.ASPECT_HIDDEN, aspectProps); nodeService.createAssociation(signature, person, CounterSignSignatureModel.ASSOC_SIGNEDBY); return signature; }