Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 911 for suiteID (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/create/CreateContextRequest.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs.internal.smb2.create;
    7.  
    8.  
    9. import jcifs.Encodable;
    10.  
    11.  
    12. /**
    13. * @author mbechler
    14. *
    15. */
    16. public interface CreateContextRequest extends Encodable {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1004 bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/FileEntry.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs.smb;
    7.  
    8.  
    9. /**
    10. *
    11. *
    12. *
    13. */
    14. public interface FileEntry {
    15.  
    16. /**
    17. *
    18. * @return the file name
    19. */
    20. String getName ();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/SMBProtocolDecodingException.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs.internal;
    7.  
    8.  
    9. import jcifs.CIFSException;
    10.  
    11.  
    12. /**
    13. * @author mbechler
    14. *
    15. */
    16. public class SMBProtocolDecodingException extends CIFSException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/ndr/NdrShort.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6.  
    7. package jcifs.smb1.dcerpc.ndr;
    8.  
    9. public class NdrShort extends NdrObject {
    10.  
    11. public int value;
    12.  
    13. public NdrShort(int value) {
    14. this.value = value & 0xFF;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/PacCredentialType.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs.pac;
    7.  
    8.  
    9. /**
    10. * Structure representing the PAC_CREDENTIAL_TYPE record
    11. *
    12. * @author jbbugeau
    13. */
    14. @SuppressWarnings ( "javadoc" )
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Request.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs.util.transport;
    7.  
    8.  
    9. /**
    10. *
    11. *
    12. */
    13. public interface Request extends Message {
    14.  
    15. /**
    16. * @return number of credits this request requires
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/CIFSException.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs;
    7.  
    8.  
    9. import java.io.IOException;
    10.  
    11.  
    12. /**
    13. * Base for all checked exceptions used by this library
    14. *
    15. * @author mbechler
    16. *
    17. */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Credentials.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6. package jcifs;
    7.  
    8.  
    9. /**
    10. * Interface for opaque credential data
    11. *
    12. * @author mbechler
    13. *
    14. */
    15. public interface Credentials {
    16.  
    17. /**
    18. *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6.  
    7. package jcifs.dcerpc.msrpc;
    8.  
    9. @SuppressWarnings ( "javadoc" )
    10. public class MsrpcLookupSids extends lsarpc.LsarLookupSids {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenDomain.java

    1. *
    2. * You should have received a copy of the GNU Lesser General Public
    3. * License along with this library; if not, write to the Free Software
    4. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    5. */
    6.  
    7. package jcifs.dcerpc.msrpc;
    8.  
    9.  
    10. import jcifs.dcerpc.rpc;
    11.  
    12.  
    13. @SuppressWarnings ( "javadoc" )
    14. public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top