@@ -24,108 +24,108 @@ parameter determines which way the whitelisting applies. You can set the value t
2424BoxCollaborationWhitelist . create(api, " test.com" , BoxCollaborationWhitelist . WhitelistDirection . BOTH );
2525```
2626
27- [ whitelist1] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelist.html#create ( com.box.sdk.BoxAPIConnection, %20java .lang.String, %20com .box.sdk.BoxCollaborationWhitelist.WhitelistDirection)
27+ [ whitelist1 ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelist.html#create- com.box.sdk.BoxAPIConnection-java .lang.String-com .box.sdk.BoxCollaborationWhitelist.WhitelistDirection-
2828
2929Get a Collaboration Whitelist's Information for a Domain
3030--------------------------------------------------------
3131
3232A specific collaboration whitelist for a domain can be retrieved with
33- [ ` getInfo() ` ] [ getInfo ]
33+ [ ` getInfo() ` ] [ getWhitelistInfo ]
3434
3535``` java
3636BoxCollaborationWhitelist domainWhitelist = new BoxCollaborationWhitelist (api, " id" );
3737domainWhitelist. getInfo();
3838```
3939
40- [ getInfo ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelist.html#getInfo()
40+ [ getWhitelistInfo ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelist.html#getInfo--
4141
4242Get all Collaboration Whitelist's Information for Domain
4343--------------------------------------------------------
4444
4545All domain collaboration whitelists associated with an enterprise can be retrieved with
46- [ ` getAll(BoxAPIConnection) ` ] [ getAll1 ]
46+ [ ` getAll(BoxAPIConnection) ` ] [ getAllWhitelists1 ]
4747
4848``` java
4949BoxCollaborationWhitelist . getAll(api);
5050```
5151
5252To specify the number of whitelists to retrieve you can specify a limit on how many whitelists to return.
53- [ ` getAll(BoxAPIConnection, Integer) ` ]
53+ [ ` getAll(BoxAPIConnection, Integer) ` ] [ getAllWhitelists2 ]
5454
5555``` java
5656BoxCollaborationWhitelist . getAll(api, 10 );
5757```
5858
59- [ getAll1 ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelist.html#getAll( com.box.sdk.BoxAPIConnection)
60- [ getAll2 ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelist.html#getAll ( com.box.sdk.BoxAPIConnection, %20java .lang.Integer)
59+ [ getAllWhitelists1 ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelist.html#getAll- com.box.sdk.BoxAPIConnection-java.lang.String...-
60+ [ getAllWhitelists2 ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelist.html#getAll- com.box.sdk.BoxAPIConnection-int-java .lang.String...-
6161
6262Remove a Collaboration Whitelist for a Domain
6363---------------------------------------------
6464
6565To remove a collaboration whitelist you can call
66- [ ` delete() ` ] [ delete ]
66+ [ ` delete() ` ] [ deleteWhitelist ]
6767
6868``` java
6969BoxCollaborationWhitelist domainToBeDeleted = new BoxCollaborationWhitelist (api, " whitelist-id" );
7070domainToBeDeleted. delete();
7171```
7272
73- [ delete ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelist.html#delete()
73+ [ deleteWhitelist ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelist.html#delete--
7474
7575Add a Collaboration Whitelist for a User
7676----------------------------------------
7777
7878A collaboration whitelist can be created for a user with
79- [ ` create(BoxAPIConnection, String) ` ] [ create ]
79+ [ ` create(BoxAPIConnection, String) ` ] [ createExempt ]
8080
8181``` java
8282String userID = " 12345" ;
8383BoxCollaborationWhitelistExemptTarget . create(api, userID);
8484```
8585
86- [ create ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelistExemptTarget.html#create ( com.box.sdk.BoxAPIConnection, %20java .lang.String)
86+ [ createExempt ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelistExemptTarget.html#create- com.box.sdk.BoxAPIConnection-java .lang.String-
8787
8888Get a Collaboration Whitelist's Information for a User
8989------------------------------------------------------
9090
9191To retrieve information regarding a specific user collaboration whitelist use
92- [ ` getInfo() ` ] [ getInfo ]
92+ [ ` getInfo() ` ] [ getInfoExempt ]
9393
9494``` java
9595BoxCollaborationWhitelistExemptTarget userWhitelist = new BoxCollaborationWhitelistExemptTarget (api, " whitelistID" );
9696userWhitelist. getInfo();
9797```
9898
99- [ getInfo ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelistExemptTarget.html#getInfo()
99+ [ getInfoExempt ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelistExemptTarget.html#getInfo--
100100
101101Get all Collaboration Whitelist's Information for a User
102102--------------------------------------------------------
103103
104104To retrieve information regarding all user whitelists associated with an enterprise use
105- [ ` getAll(BoxAPIConnection) ` ] [ getAll1 ]
105+ [ ` getAll(BoxAPIConnection) ` ] [ getAllExempt1 ]
106106
107107``` java
108108BoxCollaborationWhitelistExemptTarget . getAll(api);
109109```
110110
111111Alternatively you can specify the number of user whitelists to return with one request with
112- [ ` getAll(BoxApiConnection, Integer) ` ] [ getAll2 ]
112+ [ ` getAll(BoxApiConnection, Integer) ` ] [ getAllExempt2 ]
113113
114114``` java
115115BoxCollaborationWhitelistExemptTarget . getAll(api, 5 );
116116```
117117
118- [ getAll1 ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelistExemptTarget.html#getAll( com.box.sdk.BoxAPIConnection)
119- [ getAll2 ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelistExemptTarget.html#getAll ( com.box.sdk.BoxAPIConnection, %20java .lang.Integer)
118+ [ getAllExempt1 ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelistExemptTarget.html#getAll- com.box.sdk.BoxAPIConnection-java.lang.String...-
119+ [ getAllExempt2 ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelistExemptTarget.html#getAll- com.box.sdk.BoxAPIConnection-int-java .lang.String...-
120120
121121Remove a Collaboration Whitelist for a User
122122-------------------------------------------
123123
124124To remove a user collaboration whitelist entry from an enterprise use
125- [ ` delete() ` ] [ delete ]
125+ [ ` delete() ` ] [ deleteExempt ]
126126
127127``` java
128128BoxCollaborationWhitelistExemptTarget . delete();
129129```
130130
131- [ delete ] : http://opensource.box.com/box-java-sdk/javadoc/com/sdk/BoxCollaborationWhitelistExemptTarget.html#delete()
131+ [ deleteExempt ] : http://opensource.box.com/box-java-sdk/javadoc/com/box/ sdk/BoxCollaborationWhitelistExemptTarget.html#delete--
0 commit comments