something Javadoc

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1929 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
borg-0300 19 years ago
parent 85bb8e32a1
commit d808765087

@ -40,24 +40,22 @@
// done inside the copyright notive above. A re-distribution must contain // done inside the copyright notive above. A re-distribution must contain
// the intact and unchanged copyright notice. // the intact and unchanged copyright notice.
// Contributions and changes to the program code must be marked as such. // Contributions and changes to the program code must be marked as such.
//
/* //
YACY stands for Yet Another CYberspace // YACY stands for Yet Another CYberspace
//
the yacySeed Object is the object that bundles and carries all information about // the yacySeed Object is the object that bundles and carries all information about
a single peer in the yacy space. // a single peer in the yacy space.
The yacySeed object is carried along peers using a string representation, that can // The yacySeed object is carried along peers using a string representation, that can
be compressed and/or scrambled, depending on the purpose of the process. // be compressed and/or scrambled, depending on the purpose of the process.
//
the yacy status // the yacy status
any value that is defined here will be overwritten each time the proxy is started // any value that is defined here will be overwritten each time the proxy is started
to prevent that the system gets confused, it should be set to "" which means // to prevent that the system gets confused, it should be set to "" which means
undefined. Other status' that can be reached at run-time are // undefined. Other status' that can be reached at run-time are
junior - a peer that has no public socket, thus cannot be reached on demand // junior - a peer that has no public socket, thus cannot be reached on demand
senior - a peer that has a public socked and serves search queries // senior - a peer that has a public socked and serves search queries
principal - a peer like a senior socket and serves as gateway for network definition // principal - a peer like a senior socket and serves as gateway for network definition
*/
package de.anomic.yacy; package de.anomic.yacy;
@ -82,15 +80,41 @@ import de.anomic.tools.crypt;
public class yacySeed { public class yacySeed {
/**
* <b>substance</b> "sI" (send index/words)
*/
public static final String INDEX_OUT = "sI"; public static final String INDEX_OUT = "sI";
/**
* <b>substance</b> "rI" (received index/words)
*/
public static final String INDEX_IN = "rI"; public static final String INDEX_IN = "rI";
/**
* <b>substance</b> "sU" (send URLs)
*/
public static final String URL_OUT = "sU"; public static final String URL_OUT = "sU";
/**
* <b>substance</b> "rU" (received URLs)
*/
public static final String URL_IN = "rU"; public static final String URL_IN = "rU";
/**
* <b>substance</b> "virgin"
*/
public static final String PEERTYPE_VIRGIN = "virgin"; public static final String PEERTYPE_VIRGIN = "virgin";
/**
* <b>substance</b> "junior"
*/
public static final String PEERTYPE_JUNIOR = "junior"; public static final String PEERTYPE_JUNIOR = "junior";
/**
* <b>substance</b> "senior"
*/
public static final String PEERTYPE_SENIOR = "senior"; public static final String PEERTYPE_SENIOR = "senior";
/**
* <b>substance</b> "principal"
*/
public static final String PEERTYPE_PRINCIPAL = "principal"; public static final String PEERTYPE_PRINCIPAL = "principal";
/**
* <b>substance</b> "PeerType"
*/
public static final String PEERTYPE = "PeerType"; public static final String PEERTYPE = "PeerType";
public static final String IPTYPE = "IPType"; public static final String IPTYPE = "IPType";

Loading…
Cancel
Save