Package com.soffid.iam.api
Class NetworkAuthorization
- java.lang.Object
-
- com.soffid.iam.api.NetworkAuthorization
-
- All Implemented Interfaces:
Serializable
public class NetworkAuthorization extends Object implements Serializable
ValueObject NetworkAuthorization- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NetworkAuthorization()
NetworkAuthorization(Identity identity, Integer level, String networkCode)
NetworkAuthorization(Identity identity, Integer level, String mask, String networkCode, Long id)
NetworkAuthorization(NetworkAuthorization otherBean)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getId()
Gets value for attribute idIdentity
getIdentity()
Gets value for attribute identityInteger
getLevel()
Gets value for attribute levelString
getMask()
Gets value for attribute maskString
getNetworkCode()
Gets value for attribute networkCodevoid
setId(Long id)
Sets value for attribute idvoid
setIdentity(Identity identity)
Sets value for attribute identityvoid
setLevel(Integer level)
Sets value for attribute levelvoid
setMask(String mask)
Sets value for attribute maskvoid
setNetworkCode(String networkCode)
Sets value for attribute networkCodestatic NetworkAuthorization
toNetworkAuthorization(NetworkAuthorization vo)
Creates a NetworkAuthorization value object based on a NetworkAuthorization object.static void
toNetworkAuthorization(NetworkAuthorization source, NetworkAuthorization target)
Updates a NetworkAuthorization value object based on a NetworkAuthorization object.static NetworkAuthorization[]
toNetworkAuthorizationArray(NetworkAuthorization[] source)
Creates a NetworkAuthorization array on a NetworkAuthorization array.static AsyncList<NetworkAuthorization>
toNetworkAuthorizationAsyncList(AsyncList<NetworkAuthorization> source)
Creates a NetworkAuthorization asynclist on a NetworkAuthorization collection.static PagedResult<NetworkAuthorization>
toNetworkAuthorizationList(PagedResult<NetworkAuthorization> source)
Creates a NetworkAuthorization pagedResult on a NetworkAuthorization collection.static List<NetworkAuthorization>
toNetworkAuthorizationList(Collection<NetworkAuthorization> source)
Creates a NetworkAuthorization list on a NetworkAuthorization collection.String
toString()
Returns a string representation of the value object.
-
-
-
Constructor Detail
-
NetworkAuthorization
public NetworkAuthorization()
-
NetworkAuthorization
public NetworkAuthorization(Identity identity, Integer level, String mask, String networkCode, Long id)
-
NetworkAuthorization
public NetworkAuthorization(Identity identity, Integer level, String networkCode)
-
NetworkAuthorization
public NetworkAuthorization(NetworkAuthorization otherBean)
-
-
Method Detail
-
getIdentity
public Identity getIdentity()
Gets value for attribute identity
-
setIdentity
public void setIdentity(Identity identity)
Sets value for attribute identity
-
getLevel
public Integer getLevel()
Gets value for attribute level
-
setLevel
public void setLevel(Integer level)
Sets value for attribute level
-
getMask
public String getMask()
Gets value for attribute mask
-
setMask
public void setMask(String mask)
Sets value for attribute mask
-
getNetworkCode
public String getNetworkCode()
Gets value for attribute networkCode
-
setNetworkCode
public void setNetworkCode(String networkCode)
Sets value for attribute networkCode
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
toString
public String toString()
Returns a string representation of the value object.
-
toNetworkAuthorization
public static NetworkAuthorization toNetworkAuthorization(NetworkAuthorization vo)
Creates a NetworkAuthorization value object based on a NetworkAuthorization object.
-
toNetworkAuthorizationList
public static List<NetworkAuthorization> toNetworkAuthorizationList(Collection<NetworkAuthorization> source)
Creates a NetworkAuthorization list on a NetworkAuthorization collection.
-
toNetworkAuthorizationList
public static PagedResult<NetworkAuthorization> toNetworkAuthorizationList(PagedResult<NetworkAuthorization> source)
Creates a NetworkAuthorization pagedResult on a NetworkAuthorization collection.
-
toNetworkAuthorizationAsyncList
public static AsyncList<NetworkAuthorization> toNetworkAuthorizationAsyncList(AsyncList<NetworkAuthorization> source)
Creates a NetworkAuthorization asynclist on a NetworkAuthorization collection.
-
toNetworkAuthorizationArray
public static NetworkAuthorization[] toNetworkAuthorizationArray(NetworkAuthorization[] source)
Creates a NetworkAuthorization array on a NetworkAuthorization array.
-
toNetworkAuthorization
public static void toNetworkAuthorization(NetworkAuthorization source, NetworkAuthorization target)
Updates a NetworkAuthorization value object based on a NetworkAuthorization object.
-
-