com.filenet.api.core
Interface EntireNetwork
-
- All Superinterfaces:
- EngineObject, IndependentObject, java.io.Serializable
public interface EntireNetwork extends IndependentObject
Represents the highest-level object in the Content Engine API object model. Creating an instance of this object exposes all other public members of the object hierarchy. For example, fromEntireNetwork, you can instantiate aDomainobject. From aDomain, you can navigate to an object store, then begin accessing documents, folders, etc. You can also use theEntireNetworkto retrieve all of theRealmobjects for the FileNet P8 domain, then retrieve the users and groups associated with a realm.You can create a new instance of
EntireNetworkby callinggetInstanceorfetchInstanceon theFactory.EntireNetworkclass.Metadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description RealmSetget_AllRealms()Returns the value of the AllRealms property.Userget_CurrentUser()Returns the value of the CurrentUser property.Domainget_LocalDomain()Returns the value of the LocalDomain property.Realmget_MyRealm()Returns the value of the MyRealm property.-
Methods inherited from interface com.filenet.api.core.IndependentObject
fetchProperties, fetchProperties, fetchProperty, fetchProperty, getObjectReference, refresh, refresh, refresh
-
Methods inherited from interface com.filenet.api.core.EngineObject
get_ClassDescription, getClassName, getConnection, getProperties, getSuperClasses
-
-
-
-
Method Detail
-
get_AllRealms
RealmSet get_AllRealms()
Returns the value of the AllRealms property. For more information, see AllRealms Property.
-
get_MyRealm
Realm get_MyRealm()
Returns the value of the MyRealm property. For more information, see MyRealm Property.
-
get_CurrentUser
User get_CurrentUser()
Returns the value of the CurrentUser property. For more information, see CurrentUser Property.
-
get_LocalDomain
Domain get_LocalDomain()
Returns the value of the LocalDomain property. For more information, see LocalDomain Property.
-
-