Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setResourceName (1.62 sec)

  1. src/main/java/jcifs/internal/witness/WitnessClient.java

                if (message.getResourceName() != null) {
                    notification.setResourceName(message.getResourceName());
                } else if (message.getDestinationNode() != null) {
                    notification.setResourceName(message.getDestinationNode());
                } else {
                    notification.setResourceName(registration.getShareName());
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            long timestamp = buf.dec_ndr_hyper();
            message.setTimestamp(timestamp);
    
            // Resource name
            String resourceName = decodeWideStringPointer(buf);
            message.setResourceName(resourceName);
        }
    
        /**
         * Decodes a client move notification message.
         */
        private void decodeClientMoveMessage(NdrBuffer buf, WitnessNotificationMessage message) throws NdrException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessNotification.java

        public String getResourceName() {
            return resourceName;
        }
    
        /**
         * Sets the resource name.
         *
         * @param resourceName the resource name
         */
        public void setResourceName(String resourceName) {
            this.resourceName = resourceName;
        }
    
        /**
         * Gets the notification timestamp.
         *
         * @return the timestamp
         */
        public long getTimestamp() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top