jcifs.internal.smb1.net.SmbShareInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcifs-ng Show documentation
Show all versions of jcifs-ng Show documentation
A pure-java CIFS/SMB client library
/* jcifs smb client library in Java
* Copyright (C) 2007 "Michael B. Allen"
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package jcifs.internal.smb1.net;
import jcifs.SmbConstants;
import jcifs.smb.FileEntry;
import jcifs.util.Hexdump;
/**
* Internal use only
*
* @internal
*/
public class SmbShareInfo implements FileEntry {
protected String netName;
protected int type;
protected String remark;
/**
*
*/
public SmbShareInfo () {}
/**
*
* @param netName
* @param type
* @param remark
*/
public SmbShareInfo ( String netName, int type, String remark ) {
this.netName = netName;
this.type = type;
this.remark = remark;
}
@Override
public String getName () {
return this.netName;
}
/**
* {@inheritDoc}
*
* @see jcifs.smb.FileEntry#getFileIndex()
*/
@Override
public int getFileIndex () {
return 0;
}
@Override
public int getType () {
/*
* 0x80000000 means hidden but SmbFile.isHidden() checks for $ at end
*/
switch ( this.type & 0xFFFF ) {
case 1:
return SmbConstants.TYPE_PRINTER;
case 3:
return SmbConstants.TYPE_NAMED_PIPE;
}
return SmbConstants.TYPE_SHARE;
}
@Override
public int getAttributes () {
return SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY;
}
@Override
public long createTime () {
return 0L;
}
@Override
public long lastModified () {
return 0L;
}
/**
* {@inheritDoc}
*
* @see jcifs.smb.FileEntry#lastAccess()
*/
@Override
public long lastAccess () {
return 0L;
}
@Override
public long length () {
return 0L;
}
@Override
public boolean equals ( Object obj ) {
if ( obj instanceof SmbShareInfo ) {
SmbShareInfo si = (SmbShareInfo) obj;
return this.netName.equals(si.netName);
}
return false;
}
@Override
public int hashCode () {
int hashCode = this.netName.hashCode();
return hashCode;
}
@Override
public String toString () {
return new String(
"SmbShareInfo[" + "netName=" + this.netName + ",type=0x" + Hexdump.toHexString(this.type, 8) + ",remark=" + this.remark + "]");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy